bug #1589611, problem on 64-bit systems

This commit is contained in:
Marc Delisle
2006-12-06 18:07:06 +00:00
parent 0547dafd9b
commit 5511c701e4
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ $HeadURL$
2006-12-06 Marc Delisle <lem9@users.sourceforge.net>
* libraries/import.lib.php, /common.lib.php: bug #1603660,
incorrect escaping of ">"
* server_variables.php: bug #1589611, problem on 64-bit systems
2006-12-05 Marc Delisle <lem9@users.sourceforge.net>
* server_privileges.php: Grant all privileges on wildcard name: we should

View File

@@ -72,7 +72,7 @@ foreach ($serverVars as $name => $value) {
<th nowrap="nowrap">
<?php echo htmlspecialchars(str_replace('_', ' ', $name)); ?></th>
<td class="value"><?php
if (is_numeric($value)) {
if (strlen($value) < 16 && is_numeric($value)) {
echo PMA_formatNumber($value, 0);
$is_numeric = true;
} else {