Index: branches/5.2.x/core/kernel/db/cat_tag_processor.php =================================================================== diff -u -N -r14092 -r14095 --- branches/5.2.x/core/kernel/db/cat_tag_processor.php (.../cat_tag_processor.php) (revision 14092) +++ branches/5.2.x/core/kernel/db/cat_tag_processor.php (.../cat_tag_processor.php) (revision 14095) @@ -1,6 +1,6 @@ PermHelper = $this->Application->recallObject('PermissionsHelper'); } @@ -172,11 +173,7 @@ $params['skip_quering'] = true; $object =& $this->GetList($params); - if (!$object->Counted) { - $object->CountRecs(); - } - - return $object->NoFilterCount != $object->RecordsCount ? $object->RecordsCount.' / '.$object->NoFilterCount : $object->RecordsCount; + return $object->GetRecordsCount(false) != $object->GetRecordsCount() ? $object->GetRecordsCount().' / '.$object->GetRecordsCount(false) : $object->GetRecordsCount(); } function ListReviews($params) @@ -452,7 +449,7 @@ { $list =& $this->GetList($params); - if ($list->mainList) { + if ($list->isMainList()) { return parent::CombinedSortingDropDownName($params); } @@ -469,7 +466,7 @@ { $list =& $this->GetList($params); - if ($list->mainList) { + if ($list->isMainList()) { return parent::SubmitName($params); } @@ -486,7 +483,7 @@ { $list =& $this->GetList($params); - if ($list->mainList) { + if ($list->isMainList()) { return parent::VarName($params); }