No space after unary minus
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Tue, 11 Jan 2011 14:30:03 +0000 (14:30 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Tue, 11 Jan 2011 14:30:03 +0000 (14:30 +0000)
includes/db/DatabaseSqlite.php

index 80bf092..4da6ecf 100644 (file)
@@ -415,7 +415,7 @@ class DatabaseSqlite extends DatabaseBase {
         * In SQLite this is SQLITE_MAX_LENGTH, by default 1GB. No way to query it though.
         */
        function textFieldSize( $table, $field ) {
-               return - 1;
+               return -1;
        }
 
        function unionSupportsOrderAndLimit() {