Index: trunk/core/kernel/globals.php =================================================================== diff -u -N -r4418 -r4446 --- trunk/core/kernel/globals.php (.../globals.php) (revision 4418) +++ trunk/core/kernel/globals.php (.../globals.php) (revision 4446) @@ -479,7 +479,8 @@ if ($module_section) { // substitute section instead of #section# parameter in title preset name $module_section = explode(':', $module_section); - $string = str_replace('#section#', strtolower($module_section[1]), $string); + $section = preg_replace('/configuration_(.*)/i', '\\1', $module_section[1]); + $string = str_replace('#section#', strtolower($section), $string); } return $string; }