diff options
author | thomascube <thomas@roundcube.net> | 2007-09-19 06:29:28 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-09-19 06:29:28 +0000 |
commit | 5eee009671d773cb3ebef5beca6ad47c919ac4c7 (patch) | |
tree | d7e74e8c1523579380fb4c16710b1c88a9cd8508 /program/steps/settings | |
parent | 104ee38b205d125a002b04adb704178897bae057 (diff) |
Allow vars and PHP code in templates; improved page title; fixed #1484395
Diffstat (limited to 'program/steps/settings')
-rw-r--r-- | program/steps/settings/func.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index ec9001f70..18e8e523d 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -26,7 +26,10 @@ $sql_result = $DB->query("SELECT username, mail_host FROM ".get_table_name('user $_SESSION['user_id']); if ($USER_DATA = $DB->fetch_assoc($sql_result)) - $OUTPUT->set_pagetitle(sprintf('%s %s@%s', rcube_label('settingsfor'), $USER_DATA['username'], $USER_DATA['mail_host'])); +{ + $username = $USER_DATA['username'] . (!strpos($USER_DATA['username'], '@') ? '@'.$USER_DATA['mail_host'] : ''); + $OUTPUT->set_pagetitle(sprintf('%s %s', rcube_label('settingsfor'), $username)); +} |