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