diff options
author | knut <> | 2008-08-14 10:16:47 +0000 |
---|---|---|
committer | knut <> | 2008-08-14 10:16:47 +0000 |
commit | 13b1a1322567521e4ba7a51d2f11aa5b4c24a3b6 (patch) | |
tree | bd460102f678c6b727ea2f357ffb9d899f9322aa /framework/Caching | |
parent | 9b940a6b86bf661eb66ad5752ecde1ec7a6358a8 (diff) |
fixed #908
Diffstat (limited to 'framework/Caching')
-rw-r--r-- | framework/Caching/TDbCache.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/Caching/TDbCache.php b/framework/Caching/TDbCache.php index 9c29daa0..2c2c863d 100644 --- a/framework/Caching/TDbCache.php +++ b/framework/Caching/TDbCache.php @@ -4,7 +4,7 @@ *
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
- * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2008 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Caching
@@ -146,7 +146,7 @@ class TDbCache extends TCache $db->createCommand($sql)->execute();
}
else
- throw TConfigurationException('db_cachetable_inexistent',$this->_cacheTable);
+ throw new TConfigurationException('db_cachetable_inexistent',$this->_cacheTable);
}
parent::init($config);
@@ -392,4 +392,4 @@ class TDbCache extends TCache }
}
-?> +?>
|