Index: trunk/kernel/units/config_search/config_search_event_handler.php =================================================================== diff -u -r4084 -r4216 --- trunk/kernel/units/config_search/config_search_event_handler.php (.../config_search_event_handler.php) (revision 4084) +++ trunk/kernel/units/config_search/config_search_event_handler.php (.../config_search_event_handler.php) (revision 4216) @@ -14,9 +14,8 @@ $object =& $event->getObject(); // show only items that belong to selected module - $module_owner = $this->Application->GetLinkedVar('module'); - $this->Application->LinkVar('section'); - $object->addFilter('module_filter', '%1$s.ModuleName = '.$this->Conn->qstr($module_owner)); + $module = $this->Application->GetVar('module'); + $object->addFilter('module_filter', '%1$s.ModuleName = '.$this->Conn->qstr($module)); // don't show disabled search items $object->addFilter('active_filter', '%1$s.SimpleSearch <> -1');