Index: branches/unlabeled/unlabeled-1.1.4/core/units/related_searches/related_searches_tag_processor.php =================================================================== diff -u -r10594 -r10668 --- branches/unlabeled/unlabeled-1.1.4/core/units/related_searches/related_searches_tag_processor.php (.../related_searches_tag_processor.php) (revision 10594) +++ branches/unlabeled/unlabeled-1.1.4/core/units/related_searches/related_searches_tag_processor.php (.../related_searches_tag_processor.php) (revision 10668) @@ -10,10 +10,16 @@ */ function RelatedSearchUrl($params) { - $object =& $this->getObject($params); + $object =& $this->getObject($params); $keyword = $object->GetDBField('Keyword'); - - return $this->Application->HREF($params['search_template'],'', Array('keywords' => $keyword)); + + $t = $params['search_template']; + unset($params['search_template']); + + $pass_params = $params; + $pass_params['keywords'] = $keyword; + + return $this->Application->HREF($t,'', $pass_params); } }