Index: trunk/core/units/visits/visits_tag_processor.php =================================================================== diff -u -N -r2529 -r2546 --- trunk/core/units/visits/visits_tag_processor.php (.../visits_tag_processor.php) (revision 2529) +++ trunk/core/units/visits/visits_tag_processor.php (.../visits_tag_processor.php) (revision 2546) @@ -118,6 +118,35 @@ return $main_processor->T($params); } */ + + /** + * Enter description here... + * + * @param unknown_type $params + * @return kDBList + */ + + function &GetList($params) + { + $list_name = $this->SelectParam($params, 'list_name,name'); + if (!$list_name) { + $list_name = $this->Application->Parser->GetParam('list_name'); + } + $types = $this->SelectParam($params, 'types'); + $special=''; + if ($types=='myvisitororders' || $types=='myvisitors'){ + $special = 'incommerce'; + $names_mapping = $this->Application->GetVar('NamesToSpecialMapping'); + $names_mapping[$list_name] = $special; + $this->Application->SetVar('NamesToSpecialMapping', $names_mapping); + + } + + + return parent::GetList($params); + } + } + ?> \ No newline at end of file