Issue 1018: ObjectCache 사용중 moveDocumentToTrash 개선

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9901 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ucorina 2011-12-02 09:54:06 +00:00
parent aa45722412
commit 48c1e83b07

View file

@ -621,6 +621,13 @@ class documentController extends document {
// commit
$oDB->commit();
// Clear cache
$oCacheHandler = &CacheHandler::getInstance('object');
if($oCacheHandler->isSupport())
{
$oCacheHandler->invalidateGroupKey('documentList');
}
return $output;
}