mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10020] Replaced (int) 0x80000000 with portable equivalent.
PHPBB3-10020
This commit is contained in:
parent
b414a4d107
commit
15992ceff9
1 changed files with 2 additions and 1 deletions
|
@ -573,7 +573,8 @@ function validate_range($value_ary, &$error)
|
||||||
'BOOL' => array('php_type' => 'int', 'min' => 0, 'max' => 1),
|
'BOOL' => array('php_type' => 'int', 'min' => 0, 'max' => 1),
|
||||||
'USINT' => array('php_type' => 'int', 'min' => 0, 'max' => 65535),
|
'USINT' => array('php_type' => 'int', 'min' => 0, 'max' => 65535),
|
||||||
'UINT' => array('php_type' => 'int', 'min' => 0, 'max' => (int) 0x7fffffff),
|
'UINT' => array('php_type' => 'int', 'min' => 0, 'max' => (int) 0x7fffffff),
|
||||||
'INT' => array('php_type' => 'int', 'min' => (int) 0x80000000, 'max' => (int) 0x7fffffff),
|
// Do not use (int) 0x80000000 - it evaluates to different values on 32-bit and 64-bit systems.
|
||||||
|
'INT' => array('php_type' => 'int', 'min' => -2147483648, 'max' => (int) 0x7fffffff),
|
||||||
'TINT' => array('php_type' => 'int', 'min' => -128, 'max' => 127),
|
'TINT' => array('php_type' => 'int', 'min' => -128, 'max' => 127),
|
||||||
|
|
||||||
'VCHAR' => array('php_type' => 'string', 'min' => 0, 'max' => 255),
|
'VCHAR' => array('php_type' => 'string', 'min' => 0, 'max' => 255),
|
||||||
|
|
Loading…
Add table
Reference in a new issue