diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-05-11 20:56:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-05-11 20:56:02 +0200 |
commit | d12021e3c431ed0380209fcf9442e3802aa7d73e (patch) | |
tree | 3d50a00e5cb67c0e0737ea22871634bc312991b6 /lib/MDB2 | |
parent | cf3940425ff4b4590bb4e392c58c0ee1aa6f87b0 (diff) | |
download | nextcloud-server-d12021e3c431ed0380209fcf9442e3802aa7d73e.tar.gz nextcloud-server-d12021e3c431ed0380209fcf9442e3802aa7d73e.zip |
fix sqlite3 driver against updated MDB2
Diffstat (limited to 'lib/MDB2')
-rw-r--r-- | lib/MDB2/Driver/sqlite3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index e42d36176c4..c1f97e70381 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -276,7 +276,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common * @access public * @since 2.1.1 */ - static function setTransactionIsolation($isolation,$options=array()) + function setTransactionIsolation($isolation,$options=array()) { $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); switch ($isolation) { |