From 0a46071206713df041191ea369f54130397ea384 Mon Sep 17 00:00:00 2001 From: romanb Date: Thu, 21 Sep 2006 10:04:50 +0000 Subject: [PATCH] Small fix in Doctrine_Cache_Query_Sqlite.php --- Doctrine/Cache/Query/Sqlite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doctrine/Cache/Query/Sqlite.php b/Doctrine/Cache/Query/Sqlite.php index 7f1fb6f65..018a9ac7b 100644 --- a/Doctrine/Cache/Query/Sqlite.php +++ b/Doctrine/Cache/Query/Sqlite.php @@ -18,7 +18,7 @@ class Doctrine_Cache_Query_Sqlite implements Countable { * @param Doctrine_Connection|null $connection */ public function __construct($connection = null) { - if( ! ($connection instanceof Doctrine_Session)) + if( ! ($connection instanceof Doctrine_Connection)) $connection = Doctrine_Manager::getInstance()->getCurrentConnection(); $this->session = $connection;