Index: branches/unlabeled/unlabeled-1.23.2/core/kernel/globals.php =================================================================== diff -u -N -r4250 -r4411 --- branches/unlabeled/unlabeled-1.23.2/core/kernel/globals.php (.../globals.php) (revision 4250) +++ branches/unlabeled/unlabeled-1.23.2/core/kernel/globals.php (.../globals.php) (revision 4411) @@ -475,7 +475,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; }