Index: trunk/core/kernel/globals.php =================================================================== diff -u -N -r4665 -r4702 --- trunk/core/kernel/globals.php (.../globals.php) (revision 4665) +++ trunk/core/kernel/globals.php (.../globals.php) (revision 4702) @@ -478,6 +478,10 @@ $module_section = $application->RecallVar('section'); if ($module_section) { // substitute section instead of #section# parameter in title preset name + if (strpos($module_section, ':') === false) { + return $string; + } + $module_section = explode(':', $module_section); $section = preg_replace('/(configuration|configure)_(.*)/i', '\\2', $module_section[1]); $string = str_replace('#section#', strtolower($section), $string);