fixed caching problem for get document item

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10801 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
dragan-dan 2012-06-26 11:12:09 +00:00
parent 7f54f7b14e
commit 873e014713
2 changed files with 12 additions and 1 deletions

View file

@ -73,7 +73,7 @@
// cache controll
$oCacheHandler = &CacheHandler::getInstance('object');
if($oCacheHandler->isSupport()){
if($oCacheHandler->isSupport() && !count($this->columnList)){
$cache_key = 'object_document_item:'.$this->document_srl;
$output = $oCacheHandler->get($cache_key);
}