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:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2013-05-24 00:13:58 +0400
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2013-05-24 00:13:58 +0400
commitecf45f9de1ad5453eddd9c6626b6163694b8f423 (patch)
treec3df235d73977ff604db7c5082e0f4cb195eeed3 /server_status_monitor.php
parente2163b39e9a5d17cab5c1ad4372ae491f08ae1fa (diff)
parentba7d44ea1f4d40b64143f8b79c0d0d46ea6592b7 (diff)
Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
Diffstat (limited to 'server_status_monitor.php')
-rw-r--r--server_status_monitor.php40
1 files changed, 20 insertions, 20 deletions
diff --git a/server_status_monitor.php b/server_status_monitor.php
index f0a86b65df..f45a749c6a 100644
--- a/server_status_monitor.php
+++ b/server_status_monitor.php
@@ -765,26 +765,26 @@ function PMA_getPopContentHtml()
*/
function PMA_getClientSideDataAndLinksHtml($ServerStatusData)
{
- /**
- * Define some data needed on the client side
+ /**
+ * Define some data needed on the client side
*/
- $input = '<input type="hidden" name="%s" value="%s" />';
- $form = '<form id="js_data" class="hide">';
- $form .= sprintf($input, 'server_time', microtime(true) * 1000);
- $form .= sprintf($input, 'server_os', PHP_OS);
- $form .= sprintf($input, 'is_superuser', PMA_isSuperuser());
- $form .= sprintf($input, 'server_db_isLocal', $ServerStatusData->db_isLocal);
- $form .= '</form>';
- /**
- * Define some links used on client side
- */
- $links = '<div id="profiling_docu" class="hide">';
- $links .= PMA_Util::showMySQLDocu('general-thread-states', 'general-thread-states');
- $links .= '</div>';
- $links .= '<div id="explain_docu" class="hide">';
- $links .= PMA_Util::showMySQLDocu('explain-output', 'explain-output');
- $links .= '</div>';
-
- return $form . $links;
+ $input = '<input type="hidden" name="%s" value="%s" />';
+ $form = '<form id="js_data" class="hide">';
+ $form .= sprintf($input, 'server_time', microtime(true) * 1000);
+ $form .= sprintf($input, 'server_os', PHP_OS);
+ $form .= sprintf($input, 'is_superuser', PMA_isSuperuser());
+ $form .= sprintf($input, 'server_db_isLocal', $ServerStatusData->db_isLocal);
+ $form .= '</form>';
+ /**
+ * Define some links used on client side
+ */
+ $links = '<div id="profiling_docu" class="hide">';
+ $links .= PMA_Util::showMySQLDocu('general-thread-states', 'general-thread-states');
+ $links .= '</div>';
+ $links .= '<div id="explain_docu" class="hide">';
+ $links .= PMA_Util::showMySQLDocu('explain-output', 'explain-output');
+ $links .= '</div>';
+
+ return $form . $links;
}
?>