remove Cache support for DefaultMid

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8934 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
lickawtl 2011-08-29 14:10:33 +00:00
parent 46ce687aa6
commit 5a1d41dd00
2 changed files with 0 additions and 20 deletions

View file

@ -196,12 +196,6 @@
}
$output = executeQuery('module.updateSite', $args);
//remove from cache
$oCacheHandler = &CacheHandler::getInstance('object');
if($oCacheHandler->isSupport()){
$cache_key = 'object:'.'default_mid';
$oCacheHandler->delete($cache_key);
}
return $output;
}
@ -407,12 +401,6 @@
**/
function clearDefaultModule() {
$output = executeQuery('module.clearDefaultModule');
//remove from cache
$oCacheHandler = &CacheHandler::getInstance('object');
if($oCacheHandler->isSupport()){
$cache_key = 'object:'.'default_mid';
$oCacheHandler->delete($cache_key);
}
if(!$output->toBool()) return $output;
return $output;