summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/Caching/TMemCache.php2
-rw-r--r--framework/Web/UI/TThemeManager.php1
2 files changed, 1 insertions, 2 deletions
diff --git a/framework/Caching/TMemCache.php b/framework/Caching/TMemCache.php
index 4497ad4c..dd229312 100644
--- a/framework/Caching/TMemCache.php
+++ b/framework/Caching/TMemCache.php
@@ -63,7 +63,7 @@
* @package System.Caching
* @since 3.0
*/
-class TMemCache extends TModule implements ICache
+class TMemCache extends TCache
{
/**
* @var boolean if the module is initialized
diff --git a/framework/Web/UI/TThemeManager.php b/framework/Web/UI/TThemeManager.php
index f2de22f5..23189cae 100644
--- a/framework/Web/UI/TThemeManager.php
+++ b/framework/Web/UI/TThemeManager.php
@@ -214,7 +214,6 @@ class TTheme extends TApplicationComponent implements ITheme
if(($cache=$this->getApplication()->getCache())!==null)
{
$array=$cache->get(self::THEME_CACHE_PREFIX.$themePath);
- //print_r($array);die('here');
if(is_array($array))
{
list($skins,$cssFiles,$jsFiles,$timestamp)=$array;