*/
function get_info($doc, $pos) {
+
for ($n=$pos; $n < count($doc); $n++) {
if (trim(strtolower($doc[$n])) == '<chapter>'
|| trim(strtolower($doc[$n])) == '<section>') {
}
if (isset($ary)) {
$ary[3] = $n;
- return $ary;
} else {
- $ary[0] = 'ERROR: Help files are not in the right format!';
- $ary[1] = 'ERROR: Help files are not in the right format!';
- $ary[2] = 'ERROR: Help files are not in the right format!';
- return $ary;
+ $ary[0] = _("ERROR: Help files are not in the right format!");
+ $ary[1] = $ary[0];
+ $ary[2] = $ary[0];
}
+ return( $ary );
}
}
- $ary[0] = 'ERROR: Help files are not in the right format!';
- $ary[1] = 'ERROR: Help files are not in the right format!';
- return $ary;
+
+ $ary[0] = _("ERROR: Help files are not in the right format!");
+ $ary[1] = $ary[0];
+
+ return( $ary );
}
/**************[ END HELP FUNCTIONS ]******************/
$chapter = 3;
} else if ($context == 'search'){
$chapter = 8;
+ } else if ( isset( $_GET['chapter'] ) ) {
+ $chapter = intval( $_GET['chapter']);
+ } else {
+ $chapter = 0;
}
- if (!isset($chapter)) {
+ if ( $chapter == 0 || !isset( $helpdir[$chapter] ) ) {
echo html_tag( 'table', '', 'center', '', 'cellpadding="0" cellspacing="0" border="0"' );
html_tag( 'tr' ) .
html_tag( 'td' ) .