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 /server_privileges.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 'server_privileges.php')
-rw-r--r--server_privileges.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_privileges.php b/server_privileges.php
index 80cd6b0c32..c8df2ae057 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -43,7 +43,7 @@ if (!$is_superuser) {
. $GLOBALS['strPrivileges'] . "\n"
. '</h2>' . "\n"
. $GLOBALS['strNoPrivileges'] . "\n";
- require_once('./footer.inc.php');
+ require_once('./libraries/footer.inc.php');
}
/**
@@ -1547,7 +1547,7 @@ if ( empty( $adduser ) && empty( $checkprivs ) ) {
if ( $user_does_not_exists ) {
echo $GLOBALS['strUserNotFound'];
PMA_displayLoginInformationFields();
- //require_once('./footer.inc.php');
+ //require_once('./libraries/footer.inc.php');
}
echo '<form name="usersForm" id="usersForm" action="server_privileges.php" method="post">' . "\n"
. PMA_generate_common_hidden_inputs('', '', 3)
@@ -2109,6 +2109,6 @@ if ( empty( $adduser ) && empty( $checkprivs ) ) {
* Displays the footer
*/
echo "\n\n";
-require_once('./footer.inc.php');
+require_once('./libraries/footer.inc.php');
?>