From 7e0b0798997b197d57d09ef5e690afdb1e6a2712 Mon Sep 17 00:00:00 2001 From: xue <> Date: Thu, 29 Dec 2005 01:16:29 +0000 Subject: Changed module init() method signature. --- framework/Data/TSqliteCache.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'framework/Data/TSqliteCache.php') diff --git a/framework/Data/TSqliteCache.php b/framework/Data/TSqliteCache.php index d2955ccd..07cd91e0 100644 --- a/framework/Data/TSqliteCache.php +++ b/framework/Data/TSqliteCache.php @@ -47,7 +47,7 @@ * * $cache=new TSqliteCache; // TSqliteCache may also be loaded as a Prado application module * $cache->setDbFile($dbFilePath); - * $cache->init(); + * $cache->init(null); * $cache->add('object',$object); * $object2=$cache->get('object'); * @@ -113,10 +113,8 @@ class TSqliteCache extends TModule implements ICache * @throws TConfigurationException if sqlite extension is not installed, * DbFile is set invalid, or any error happens during creating database or cache table. */ - public function init($config=null) + public function init($config) { - parent::init($config); - if(!function_exists('sqlite_open')) throw new TConfigurationException('sqlitecache_extension_required'); if($this->_file===null) -- cgit v1.2.3