mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 20:44:28 +09:00
#242 페이지 편집 시 object cache가 갱신되지 않는 문제 수정.
This commit is contained in:
parent
93fe3f0be7
commit
5f1fc942ca
1 changed files with 8 additions and 0 deletions
|
|
@ -281,6 +281,14 @@ class pageAdminController extends page
|
||||||
FileHandler::removeFile($path . $module_info->module_srl . '.' . $file_name);
|
FileHandler::removeFile($path . $module_info->module_srl . '.' . $file_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$oCacheHandler = CacheHandler::getInstance('object', null, true);
|
||||||
|
if($oCacheHandler->isSupport())
|
||||||
|
{
|
||||||
|
$object_key = 'mid_info:' . $module_info->module_srl;
|
||||||
|
$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
|
||||||
|
$oCacheHandler->delete($cache_key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function procPageAdminArticleDocumentInsert()
|
function procPageAdminArticleDocumentInsert()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue