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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-05-25 21:13:23 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-05-25 21:13:23 +0400
commit1427b2f2de9084b52e2b92a82baa0713b035567e (patch)
treed0a8d962ce34ff3cf76ac415d476f157fda60d13 /server_variables.php
parentdef60af6e0d1fde4787ff0b8c6f48bc4a719ec5c (diff)
Fix function names: PMA_AddJSVar -> PMA_addJSVar
Diffstat (limited to 'server_variables.php')
-rw-r--r--server_variables.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_variables.php b/server_variables.php
index bde86d6ea9..ab023a97e6 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -9,9 +9,9 @@ require_once 'libraries/common.inc.php';
$GLOBALS['js_include'][] = 'server_variables.js';
-PMA_AddJSVar('pma_token', $_SESSION[' PMA_token ']);
-PMA_AddJSVar('url_query', str_replace('&amp;', '&', PMA_generate_common_url($db)));
-PMA_AddJSVar('is_superuser', PMA_isSuperuser() ? true : false);
+PMA_addJSVar('pma_token', $_SESSION[' PMA_token ']);
+PMA_addJSVar('url_query', str_replace('&amp;', '&', PMA_generate_common_url($db)));
+PMA_addJSVar('is_superuser', PMA_isSuperuser() ? true : false);
/**