Document some require/includes as phpdoc otherwise takes random block before to document it.

This commit is contained in:
Michal Čihař
2008-11-24 10:02:56 +00:00
parent 9561f56875
commit 37315b0c79
6 changed files with 55 additions and 25 deletions

View File

@@ -234,7 +234,7 @@ foreach ($loop_array as $rowcount => $primary_key) {
$val = "'" . PMA_sqlAddslashes($bs_reference) . "'";
}
}
if (empty($me_funcs[$key])) {
$cur_value = $val;
} elseif ('UNIX_TIMESTAMP' === $me_funcs[$key] && $val != "''") {
@@ -397,7 +397,13 @@ $GLOBALS['js_include'][] = 'functions.js';
$GLOBALS['js_include'][] = 'mootools.js';
$active_page = $goto_include;
/**
* Load header.
*/
require_once './libraries/header.inc.php';
/**
* Load target page.
*/
require './' . PMA_securePath($goto_include);
exit;
?>