Index: trunk/kernel/units/configuration/configuration_event_handler.php =================================================================== diff -u -N -r4207 -r4216 --- trunk/kernel/units/configuration/configuration_event_handler.php (.../configuration_event_handler.php) (revision 4207) +++ trunk/kernel/units/configuration/configuration_event_handler.php (.../configuration_event_handler.php) (revision 4216) @@ -13,10 +13,10 @@ { $object =& $event->getObject(); - $module_owner = $this->Application->GetLinkedVar('module'); - $section = $this->Application->GetLinkedVar('section'); + $module = $this->Application->GetVar('module'); + $section = $this->Application->GetVar('section'); - $object->addFilter('module_filter', '%1$s.ModuleOwner = '.$this->Conn->qstr($module_owner)); + $object->addFilter('module_filter', '%1$s.ModuleOwner = '.$this->Conn->qstr($module)); $object->addFilter('section_filter', '%1$s.Section = '.$this->Conn->qstr($section)); }