Index: trunk/kernel/units/help/help_tag_processor.php =================================================================== diff -u -r4216 -r4665 --- trunk/kernel/units/help/help_tag_processor.php (.../help_tag_processor.php) (revision 4216) +++ trunk/kernel/units/help/help_tag_processor.php (.../help_tag_processor.php) (revision 4665) @@ -27,6 +27,10 @@ { $module = $this->Application->GetVar('h_module'); if (!$module) $module = $this->Application->RecallVar('module'); + + $module = explode(':', $module); + $module = $module[0]; + $title_preset = $this->Application->GetVar('h_title_preset'); $sql = 'SELECT Path FROM '.TABLE_PREFIX.'Modules WHERE LOWER(Name)='.$this->Conn->qstr( strtolower($module) );