Commit 0a460712 authored by romanb's avatar romanb

Small fix in Doctrine_Cache_Query_Sqlite.php

parent eb330027
...@@ -18,7 +18,7 @@ class Doctrine_Cache_Query_Sqlite implements Countable { ...@@ -18,7 +18,7 @@ class Doctrine_Cache_Query_Sqlite implements Countable {
* @param Doctrine_Connection|null $connection * @param Doctrine_Connection|null $connection
*/ */
public function __construct($connection = null) { public function __construct($connection = null) {
if( ! ($connection instanceof Doctrine_Session)) if( ! ($connection instanceof Doctrine_Connection))
$connection = Doctrine_Manager::getInstance()->getCurrentConnection(); $connection = Doctrine_Manager::getInstance()->getCurrentConnection();
$this->session = $connection; $this->session = $connection;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment