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:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-04-30 22:35:16 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-04-30 22:35:16 +0400
commitfbe4438628c0069f8d7a2548fcb9fdb3a3fef940 (patch)
tree3b66332395aa97eff6d4862b6439c3f1bd00d306 /server_variables.php
parent7f56c8504d33606fe12a1c01e6d17853d8003f65 (diff)
PMA_DBI_fetch_result --> PMA_DBI_fetchResult
Diffstat (limited to 'server_variables.php')
-rw-r--r--server_variables.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/server_variables.php b/server_variables.php
index 4cd9afc2f8..1979cc0bf5 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -144,8 +144,8 @@ $output .= PMA_Util::getImage(
/**
* Sends the queries and buffers the results
*/
-$serverVarsSession = PMA_DBI_fetch_result('SHOW SESSION VARIABLES;', 0, 1);
-$serverVars = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES;', 0, 1);
+$serverVarsSession = PMA_DBI_fetchResult('SHOW SESSION VARIABLES;', 0, 1);
+$serverVars = PMA_DBI_fetchResult('SHOW GLOBAL VARIABLES;', 0, 1);
/**