bug #1589611, problem on 64-bit systems
This commit is contained in:
@@ -8,6 +8,7 @@ $Source$
|
|||||||
2006-12-06 Marc Delisle <lem9@users.sourceforge.net>
|
2006-12-06 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/import.lib.php, /common.lib.php: bug #1603660,
|
* libraries/import.lib.php, /common.lib.php: bug #1603660,
|
||||||
incorrect escaping of ">"
|
incorrect escaping of ">"
|
||||||
|
* server_variables.php: bug #1589611, problem on 64-bit systems
|
||||||
|
|
||||||
2006-12-05 Marc Delisle <lem9@users.sourceforge.net>
|
2006-12-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* server_privileges.php: Grant all privileges on wildcard name: we should
|
* server_privileges.php: Grant all privileges on wildcard name: we should
|
||||||
|
@@ -72,7 +72,7 @@ foreach ($serverVars as $name => $value) {
|
|||||||
<th nowrap="nowrap">
|
<th nowrap="nowrap">
|
||||||
<?php echo htmlspecialchars(str_replace('_', ' ', $name)); ?></th>
|
<?php echo htmlspecialchars(str_replace('_', ' ', $name)); ?></th>
|
||||||
<td class="value"><?php
|
<td class="value"><?php
|
||||||
if (is_numeric($value)) {
|
if (strlen($value) < 16 && is_numeric($value)) {
|
||||||
echo PMA_formatNumber($value, 0);
|
echo PMA_formatNumber($value, 0);
|
||||||
$is_numeric = true;
|
$is_numeric = true;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user