Move footer.inc.php, header.inc.php and header_printview.inc.php to libraries folder as it does not require direct access.

This commit is contained in:
Michal Čihař
2005-11-24 09:12:17 +00:00
parent e040c424fa
commit 6aeabf44d1
65 changed files with 118 additions and 118 deletions

View File

@@ -8,7 +8,7 @@
require_once('./libraries/common.lib.php');
if (!isset($selected_tbl)) {
require_once('./header.inc.php');
require_once('./libraries/header.inc.php');
}
@@ -295,5 +295,5 @@ function printPage()
<?php
echo '<br /><br /><input type="button" id="print" value="' . $strPrint . '" onclick="printPage()" />';
require_once('./footer.inc.php');
require_once('./libraries/footer.inc.php');
?>