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_status.php
parentdef60af6e0d1fde4787ff0b8c6f48bc4a719ec5c (diff)
Fix function names: PMA_AddJSVar -> PMA_addJSVar
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/server_status.php b/server_status.php
index f068bbad87..ed1d4f136a 100644
--- a/server_status.php
+++ b/server_status.php
@@ -729,36 +729,36 @@ $server_db_isLocal = strtolower($cfg['Server']['host']) == 'localhost'
|| $cfg['Server']['host'] == '127.0.0.1'
|| $cfg['Server']['host'] == '::1';
-PMA_AddJSVar(
+PMA_addJSVar(
'pma_token',
$_SESSION[' PMA_token ']
);
-PMA_AddJSVar(
+PMA_addJSVar(
'url_query',
str_replace('&amp;', '&', PMA_generate_common_url($db))
);
-PMA_AddJSVar(
+PMA_addJSVar(
'server_time_diff',
'new Date().getTime() - ' . (microtime(true) * 1000),
false
);
-PMA_AddJSVar(
+PMA_addJSVar(
'server_os',
PHP_OS
);
-PMA_AddJSVar(
+PMA_addJSVar(
'is_superuser',
PMA_isSuperuser()
);
-PMA_AddJSVar(
+PMA_addJSVar(
'server_db_isLocal',
$server_db_isLocal
);
-PMA_AddJSVar(
+PMA_addJSVar(
'profiling_docu',
PMA_showMySQLDocu('general-thread-states', 'general-thread-states')
);
-PMA_AddJSVar(
+PMA_addJSVar(
'explain_docu',
PMA_showMySQLDocu('explain-output', 'explain-output')
);