Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18784
Modified Files:
serendipity_db_postgres.inc.php
Log Message:
postgresql fix
Index: serendipity_db_postgres.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_db_postgres.inc.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- serendipity_db_postgres.inc.php 5 May 2004 09:14:31 -0000 1.10
+++ serendipity_db_postgres.inc.php 5 May 2004 11:31:38 -0000 1.11
@@ -32,7 +32,7 @@
{
$limit_split = split(',', $limitstring);
if (count($limit_split) > 1) {
- $limit = ' LIMIT ' . $limit_split[1] . ' OFFSET ' . $limit_split[0];
+ $limit = ' LIMIT ' . $limit_split[0] . ' OFFSET ' . $limit_split[1];
} else {
$limit = ' LIMIT ' . $limit_split[0];
}
|