From: Max Semenik Date: Thu, 5 Nov 2009 18:41:45 +0000 (+0000) Subject: implicitOrderby() seems to be true for SQLite, removing the override X-Git-Tag: 1.31.0-rc.0~38963 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=d54f6c20395aeccd9865293137bbafe614292aad;p=lhc%2Fweb%2Fwiklou.git implicitOrderby() seems to be true for SQLite, removing the override --- diff --git a/includes/db/DatabaseSqlite.php b/includes/db/DatabaseSqlite.php index 23a2473d98..996a16e1dd 100644 --- a/includes/db/DatabaseSqlite.php +++ b/includes/db/DatabaseSqlite.php @@ -32,10 +32,9 @@ class DatabaseSqlite extends DatabaseBase { } /** - * todo: check if these should be true like parent class + * @todo: check if it should be true like parent class */ function implicitGroupby() { return false; } - function implicitOrderby() { return false; } static function newFromParams( $server, $user, $password, $dbName, $failFunction = false, $flags = 0 ) { return new DatabaseSqlite( $server, $user, $password, $dbName, $failFunction, $flags );