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:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-09-11 22:27:39 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-09-12 04:09:05 +0300
commita2b08bae7b9979dee6a9f195e55481bf1d7e882d (patch)
tree76bb601dfe7ca50fe6dcc7f885d3f95caa40ba68 /db_operations.php
parent9f6fcf04b4d7bae72b4899aaca743a2162d778f6 (diff)
Refactor check_user_privileges to static methods
Refactor check_user_privileges.lib.php functions to static methods and move logic to check_user_privileges.inc.php. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_operations.php b/db_operations.php
index 19744a7075..63d0123bbf 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -28,7 +28,7 @@ require_once 'libraries/common.inc.php';
/**
* functions implementation for this script
*/
-require_once 'libraries/check_user_privileges.lib.php';
+require_once 'libraries/check_user_privileges.inc.php';
// add a javascript file for jQuery functions to handle Ajax actions
$response = Response::getInstance();