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:
authorJ.M <me@mynetx.net>2013-05-13 13:27:56 +0400
committerJ.M <me@mynetx.net>2013-05-13 13:27:56 +0400
commit529903e0dd9f5585a92118838928afba79c35147 (patch)
tree32a0c5f5e06ca0e16a1fdc1a520ecdda11660e42 /server_status_monitor.php
parent4113d9e98b9b46cb440e4c928c92719f0e090c58 (diff)
Fix bug #3907 undefined variables, function parameter problems
Thanks Rasmus Lerdorf for analyzing!
Diffstat (limited to 'server_status_monitor.php')
-rw-r--r--server_status_monitor.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_status_monitor.php b/server_status_monitor.php
index 3f6b6f0fca..4a28502431 100644
--- a/server_status_monitor.php
+++ b/server_status_monitor.php
@@ -293,10 +293,10 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
. implode(
' ',
PMA_Util::formatByteDown(
- strlen($row['argument'])
- ),
- 2,
- 2
+ strlen($row['argument']),
+ 2,
+ 2
+ )
)
. ']';
}