From: Andreas Fischer Date: Tue, 10 Sep 2013 17:14:30 +0000 (+0200) Subject: Create instance of Doctrine\Common\EventManager() in OC_DB. X-Git-Tag: v6.0.0alpha2~170^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7f07d737f85fcf511219f44d5369b352b9f0e067;p=nextcloud-server.git Create instance of Doctrine\Common\EventManager() in OC_DB. --- diff --git a/lib/db.php b/lib/db.php index f090f474243..bd67937cdd8 100644 --- a/lib/db.php +++ b/lib/db.php @@ -75,6 +75,7 @@ class OC_DB { // do nothing if the connection already has been established if (!self::$connection) { $config = new \Doctrine\DBAL\Configuration(); + $eventManager = new \Doctrine\Common\EventManager(); switch($type) { case 'sqlite': case 'sqlite3': @@ -142,7 +143,7 @@ class OC_DB { $connectionParams['wrapperClass'] = 'OC\DB\Connection'; $connectionParams['tablePrefix'] = OC_Config::getValue('dbtableprefix', 'oc_' ); try { - self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config, $eventManager); if ($type === 'sqlite' || $type === 'sqlite3') { // Sqlite doesn't handle query caching and schema changes // TODO: find a better way to handle this