forked from extern/egroupware
fix for pgsql >= 7.3 need separate LIMIT and OFFSET clause, works with 7.2.x too
This commit is contained in:
parent
c7e95eabee
commit
b4f4f7c938
@ -232,7 +232,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
$Query_String .= ' LIMIT ' . $num_rows . ',' . $offset;
|
||||
$Query_String .= ' LIMIT ' . $num_rows . ' OFFSET ' . $offset;
|
||||
}
|
||||
|
||||
if($this->Debug)
|
||||
|
Loading…
Reference in New Issue
Block a user