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>2011-08-19 12:38:51 +0400
committerMichal Čihař <michal@cihar.com>2011-08-19 12:38:51 +0400
commit1b45290d5551a5619dcd1e29cd8956e30aeb690f (patch)
tree9b41c3ee8cee8c75fe6028d861bb6d55c737a3de /server_status.php
parent4b5ae952dd6486735ed066b69e22962af72f80c2 (diff)
Use 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 4e215a445a..30c3c5a850 100644
--- a/server_status.php
+++ b/server_status.php
@@ -673,14 +673,14 @@ $server_db_isLocal = strtolower($cfg['Server']['host']) == 'localhost'
|| $cfg['Server']['host'] == '127.0.0.1'
|| $cfg['Server']['host'] == '::1';
-PMA_AddJSCode('pma_token = \'' . $_SESSION[' PMA_token '] . "';\n" .
- 'url_query = \'' . str_replace('&amp;', '&', PMA_generate_common_url($db)) . "';\n" .
- 'server_time_diff = new Date().getTime() - ' . (microtime(true) * 1000) . ";\n" .
- 'server_os = \'' . PHP_OS . "';\n" .
- 'is_superuser = ' . (PMA_isSuperuser() ? 'true' : 'false') . ";\n" .
- 'server_db_isLocal = ' . ($server_db_isLocal ? 'true' : 'false') . ";\n" .
- 'profiling_docu = \'' . PMA_showMySQLDocu('general-thread-states', 'general-thread-states') . "';\n" .
- 'explain_docu = \'' . PMA_showMySQLDocu('explain-output', 'explain-output') . ";'\n");
+PMA_AddJSVar('pma_token', $_SESSION[' PMA_token ']);
+PMA_AddJSVar('url_query', str_replace('&amp;', '&', PMA_generate_common_url($db)));
+PMA_AddJSVar('server_time_diff', 'new Date().getTime() - ' . (microtime(true) * 1000));
+PMA_AddJSVar('server_os', PHP_OS);
+PMA_AddJSVar('is_superuser', PMA_isSuperuser() ? true : false);
+PMA_AddJSVar('server_db_isLocal', $server_db_isLocal ? true : false);
+PMA_AddJSVar('profiling_docu', PMA_showMySQLDocu('general-thread-states', 'general-thread-states'));
+PMA_AddJSVar('explain_docu', PMA_showMySQLDocu('explain-output', 'explain-output'));
/**
* start output