|
From: Benjamin C. <bc...@us...> - 2002-12-18 03:50:27
|
Update of /cvsroot/phpbt/phpbt/inc/pear/DB
In directory sc8-pr-cvs1:/tmp/cvs-serv23161/inc/pear/DB
Modified Files:
Tag: phpbt-0_9_0
pgsql.php
Log Message:
Tweaking
Index: pgsql.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/pear/DB/pgsql.php,v
retrieving revision 1.3
retrieving revision 1.3.2.1
diff -u -r1.3 -r1.3.2.1
--- pgsql.php 11 Oct 2002 20:54:43 -0000 1.3
+++ pgsql.php 18 Dec 2002 03:50:24 -0000 1.3.2.1
@@ -558,7 +558,7 @@
function modifyLimitQuery($query, $from, $count)
{
- $query = $query . " LIMIT $count, $from";
+ $query = $query . " LIMIT $count OFFSET $from";
return $query;
}
|