mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-23 05:41:02 +01:00
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
|
else
|
||||||
{
|
{
|
||||||
$Query_String .= ' LIMIT ' . $num_rows . ',' . $offset;
|
$Query_String .= ' LIMIT ' . $num_rows . ' OFFSET ' . $offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($this->Debug)
|
if($this->Debug)
|
||||||
|
Loading…
Reference in New Issue
Block a user