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>2011-09-23 09:41:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:41:41 +0400
commit13adb5adf7e2b429819a85131edd998b34726ad7 (patch)
tree85704a296ba153690710f4eee4fb5ca063f914a5 /server_status.php
parent9bcb83af03d9f988a2e2c754e6b9b3cf2c468555 (diff)
Use lower case for true, false and null
Diffstat (limited to 'server_status.php')
-rw-r--r--server_status.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_status.php b/server_status.php
index bbac0c383a..4a8a37f8a6 100644
--- a/server_status.php
+++ b/server_status.php
@@ -1486,7 +1486,7 @@ function printVariablesTable()
}
if ('%' === substr($name, -1, 1)) {
echo htmlspecialchars(PMA_formatNumber($value, 0, 2)) . ' %';
- } elseif (strpos($name, 'Uptime')!==FALSE) {
+ } elseif (strpos($name, 'Uptime') !== false) {
echo htmlspecialchars(PMA_timespanFormat($value));
} elseif (is_numeric($value) && $value == (int) $value && $value > 1000) {
echo htmlspecialchars(PMA_formatNumber($value, 3, 1));