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 11:29:44 +0300
committerMichal Čihař <michal@cihar.com>2005-11-24 11:29:44 +0300
commit66aa9d23964beb2de9dabeb9afdf734d09ac989f (patch)
tree5d2b32c426090729faacc0f42873896bd8063388 /server_privileges.php
parentf5f7fc374071c2a3f4db45867f2513f5e7d4cc83 (diff)
Move server_{links,common}.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 dddf5d8ddb..97c18ec58a 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -8,7 +8,7 @@ require_once('./libraries/common.lib.php');
* Does the common work
*/
$js_to_run = 'server_privileges.js';
-require('./server_common.inc.php');
+require('./libraries/server_common.inc.php');
/**
@@ -37,7 +37,7 @@ if ( isset( $dbname ) ) {
* Checks if the user is allowed to do what he tries to...
*/
if (!$is_superuser) {
- require('./server_links.inc.php');
+ require('./libraries/server_links.inc.php');
echo '<h2>' . "\n"
. ($GLOBALS['cfg']['MainPageIconic'] ? '<img class="icon" src="'. $GLOBALS['pmaThemeImage'] . 'b_usrlist.png" alt="" />' : '')
. $GLOBALS['strPrivileges'] . "\n"
@@ -1203,7 +1203,7 @@ if (isset($viewing_mode) && $viewing_mode == 'db') {
require('./db_details_db_info.php');
echo "\n";
} else {
- require('./server_links.inc.php');
+ require('./libraries/server_links.inc.php');
}