diff --git a/lib/Doctrine/Connection/Pgsql.php b/lib/Doctrine/Connection/Pgsql.php index a686ba944..71a2930fe 100644 --- a/lib/Doctrine/Connection/Pgsql.php +++ b/lib/Doctrine/Connection/Pgsql.php @@ -140,10 +140,10 @@ class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common . $from . ' ' . $where . ' LIMIT ' . $limit . ')'; } else { - if ($limit !== false) { + if ( ! empty($limit)) { $query .= ' LIMIT ' . $limit; } - if ($offset !== false) { + if ( ! empty($offset)) { $query .= ' OFFSET ' . $offset; } }