diff options
Diffstat (limited to 'themes/elegant/themeconf.inc.php')
-rw-r--r-- | themes/elegant/themeconf.inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/themes/elegant/themeconf.inc.php b/themes/elegant/themeconf.inc.php index d5afc6f6e..e0611ffce 100644 --- a/themes/elegant/themeconf.inc.php +++ b/themes/elegant/themeconf.inc.php @@ -15,7 +15,12 @@ $themeconf = array( // Need upgrade? global $conf; include(PHPWG_THEMES_PATH.'elegant/admin/upgrade.inc.php'); - +add_event_handler('loc_begin_picture', 'level_separator_elegant'); +function level_separator_elegant() +{ + global $template; + $template->assign( 'LEVEL_SEPARATOR', '#&$' ); +} add_event_handler('init', 'set_config_values_elegant'); function set_config_values_elegant() { |