1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

fix broken search stuff

This commit is contained in:
Colin Viebrock
2002-09-11 16:39:53 +00:00
parent 9d4dc81032
commit 313162c7c6
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ if (get_magic_quotes_gpc()) $function = stripslashes($function);
$function = strtolower($function);
if (!isset($lang)) $lang = default_language();
if (empty($lang)) $lang = default_language();
$file = find_manual_page($lang, $function);

View File

@@ -4,7 +4,7 @@ require_once 'prepend.inc';
$NUMACROSS = 2;
$SHOW_CLOSE = 10;
if (!isset($lang)) $lang = default_language();
if (empty($lang)) $lang = default_language();
if (!file_exists("$DOCUMENT_ROOT/manual/$lang")) $lang = "en";
function makeTable($lang,$array) {