From 32c4b78de8356489072a120a439c3498daebeb61 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Thu, 1 Mar 2012 20:50:31 -0500 Subject: [PATCH] Fixed fatal E_STRICT error on Windows --- sys/common/db_pdo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/common/db_pdo.php b/sys/common/db_pdo.php index d2cfccf..0bcb850 100644 --- a/sys/common/db_pdo.php +++ b/sys/common/db_pdo.php @@ -249,6 +249,6 @@ abstract class DB_SQL { * @param int $offset * @return string */ - abstract public function limit($sql, $limit, $offset); + abstract public function limit($sql, $limit, $offset=FALSE); } // End of db_pdo.php \ No newline at end of file