diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-11 08:36:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-11 08:36:28 +0000 |
commit | 45fed79d73fc7b8bfdfe975f2fd7eba15e61c8d3 (patch) | |
tree | 296386cf9fa4b1ac50f877d93221415ff788a9ff /includes | |
parent | f7cd2518fa9b5f15bc305332efb59dde76431068 (diff) | |
download | brdo-45fed79d73fc7b8bfdfe975f2fd7eba15e61c8d3.tar.gz brdo-45fed79d73fc7b8bfdfe975f2fd7eba15e61c8d3.tar.bz2 |
- Patch #348448 by c960657: fixed php strict warnings when running tests.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/database/sqlite/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/sqlite/database.inc b/includes/database/sqlite/database.inc index e580e8c3f..e62ed5d1b 100644 --- a/includes/database/sqlite/database.inc +++ b/includes/database/sqlite/database.inc @@ -140,7 +140,7 @@ class DatabaseConnection_sqlite extends DatabaseConnection { return NULL; } - protected function prepareQuery($query) { + protected function prepareQuery($query, $cache = TRUE) { // It makes no sense to use the static prepared statement cache here, // because all the work in our implementation is done in // DatabaseStatement_sqlite::execute() and cannot be cached. |