Index: trunk/core/kernel/db/db_tag_processor.php =================================================================== diff -u -r4201 -r4216 --- trunk/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 4201) +++ trunk/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 4216) @@ -1121,8 +1121,13 @@ */ function SectionTitle($params) { + // save theese variables to session, because they are useful for most configuration templates + $this->Application->LinkVar('module'); + $this->Application->LinkVar('section'); + + $preset_name = replaceModuleSection($params['title_preset']); $title_presets = $this->Application->getUnitOption($this->Prefix,'TitlePresets'); - $title_info = getArrayValue($title_presets, $params['title_preset'] ); + $title_info = getArrayValue($title_presets, $preset_name); if($title_info === false) return $params['title']; if( getArrayValue($title_presets,'default') )