Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2005-11-24 12:12:17 +0300
committerMichal Čihař <michal@cihar.com>2005-11-24 12:12:17 +0300
commit6aeabf44d1efe6cf01fa1a813ed1e9e1b2d07fd8 (patch)
tree447a6a6165e3a445e1ae4dc9b16181903b2c85c0 /db_printview.php
parente040c424fa14e2f4ea203bebc43d15f016876875 (diff)
Move footer.inc.php, header.inc.php and header_printview.inc.php to libraries folder as it does not require direct access.
Diffstat (limited to 'db_printview.php')
-rw-r--r--db_printview.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_printview.php b/db_printview.php
index e7de94c711..c64bcb4611 100644
--- a/db_printview.php
+++ b/db_printview.php
@@ -8,7 +8,7 @@ require_once('./libraries/common.lib.php');
* Gets the variables sent or posted to this script, then displays headers
*/
$print_view = TRUE;
-require_once('./header.inc.php');
+require_once('./libraries/header.inc.php');
PMA_checkParameters(array('db'));
@@ -301,5 +301,5 @@ function printPage()
<?php
echo '<br /><br />&nbsp;<input type="button" class="print_ignore" style="width: 100px; height: 25px" id="print" value="' . $strPrint . '" onclick="printPage()" />' . "\n";
-require_once('./footer.inc.php');
+require_once('./libraries/footer.inc.php');
?>