mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
change total from -1 to max value
git-svn-id: file:///svn/phpbb/trunk@5311 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0202eb8a66
commit
ee4d02132f
2 changed files with 4 additions and 2 deletions
|
@ -147,7 +147,8 @@ class dbal_mysql4 extends dbal
|
|||
// if $total is set to 0 we do not want to limit the number of rows
|
||||
if ($total == 0)
|
||||
{
|
||||
$total = -1;
|
||||
// Because MySQL 4.1+ no longer supports -1 in LIMIT queries we set it to the maximum value
|
||||
$total = 18446744073709551615;
|
||||
}
|
||||
|
||||
$query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total);
|
||||
|
|
|
@ -145,7 +145,8 @@ class dbal_mysqli extends dbal
|
|||
// if $total is set to 0 we do not want to limit the number of rows
|
||||
if ($total == 0)
|
||||
{
|
||||
$total = -1;
|
||||
// MySQL 4.1+ no longer supports -1 in limit queries
|
||||
$total = 18446744073709551615;
|
||||
}
|
||||
|
||||
$query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total);
|
||||
|
|
Loading…
Add table
Reference in a new issue