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:54:59 +0400
committerMichal Čihař <michal@cihar.com>2011-08-19 12:54:59 +0400
commitb0afa4d8bc904393d7c9902c95c24dd46ae88d6b (patch)
treedd7ce4b7d0643cff8279c57575dddd0024d30692 /server_status.php
parent381b593e5997899184e1fc7f3522f4d83bd5f025 (diff)
Wrap long lines
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php40
1 files changed, 32 insertions, 8 deletions
diff --git a/server_status.php b/server_status.php
index 30c3c5a850..1dd4852369 100644
--- a/server_status.php
+++ b/server_status.php
@@ -673,14 +673,38 @@ $server_db_isLocal = strtolower($cfg['Server']['host']) == 'localhost'
|| $cfg['Server']['host'] == '127.0.0.1'
|| $cfg['Server']['host'] == '::1';
-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'));
+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()
+);
+PMA_AddJSVar(
+ 'server_db_isLocal',
+ $server_db_isLocal
+);
+PMA_AddJSVar(
+ 'profiling_docu',
+ PMA_showMySQLDocu('general-thread-states', 'general-thread-states')
+);
+PMA_AddJSVar(
+ 'explain_docu',
+ PMA_showMySQLDocu('explain-output', 'explain-output')
+);
/**
* start output