From aa45722412abbfca70978389657618188b50c291 Mon Sep 17 00:00:00 2001 From: dragan-dan Date: Fri, 2 Dec 2011 09:53:53 +0000 Subject: [PATCH] Issue 943 git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9900 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/document/document.model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/document/document.model.php b/modules/document/document.model.php index f638192c7..a4cf03e58 100644 --- a/modules/document/document.model.php +++ b/modules/document/document.model.php @@ -157,7 +157,7 @@ // cache controll $oCacheHandler = &CacheHandler::getInstance('object'); if($oCacheHandler->isSupport()){ - $object_key = 'object:'.$obj->module_srl.'_category_srl:'.$obj->category_srl.'_list_count:'.$obj->list_count.'_search_target:'.$obj->search_target.'_search_keyword:'.$obj->search_keyword.'_page'.$obj->page.'_sort_index:'.$obj->sort_index; + $object_key = 'object:'.$obj->module_srl.'_category_srl:'.$obj->category_srl.'_list_count:'.$obj->list_count.'_search_target:'.$obj->search_target.'_search_keyword:'.$obj->search_keyword.'_page'.$obj->page.'_sort_index:'.$obj->sort_index.'_order_type:'.$obj->order_type; $cache_key = $oCacheHandler->getGroupKey('documentList', $object_key); $output = $oCacheHandler->get($cache_key); }