diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-06-27 09:44:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-06-27 09:44:05 +0000 |
commit | 2a7c2fa9b7f1cdddb64ab3658ef987d344a3e7ac (patch) | |
tree | b38115b796979b2c771534de95e6d342a8d366be /includes/database/sqlite | |
parent | 7613aa590880c0ed2397e04cc7b17efdca2169e3 (diff) | |
download | brdo-2a7c2fa9b7f1cdddb64ab3658ef987d344a3e7ac.tar.gz brdo-2a7c2fa9b7f1cdddb64ab3658ef987d344a3e7ac.tar.bz2 |
- Patch #499794 by Berdir: made protected method public because it is called as a public method.
Diffstat (limited to 'includes/database/sqlite')
-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 dc79b128d..455f50b94 100644 --- a/includes/database/sqlite/database.inc +++ b/includes/database/sqlite/database.inc @@ -157,7 +157,7 @@ class DatabaseConnection_sqlite extends DatabaseConnection { return NULL; } - protected function prepareQuery($query, $cache = TRUE) { + public 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. |