diff options
author | rub <rub@piwigo.org> | 2006-07-11 20:51:24 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-07-11 20:51:24 +0000 |
commit | 8a7fff22b0ada393cff2543fbf17c0cf52f0d03d (patch) | |
tree | 2d8f5a667fa1199708aedec7e0e6835fc3a90640 /include/functions_user.inc.php | |
parent | cfcb489cfa131a56e057e358b7041a7dd6dd71ab (diff) |
Resolved Issue ID 0000456, 0000457, 0000459, 0000465:
o Fix bugs adviser mode
git-svn-id: http://piwigo.org/svn/trunk@1458 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index a2ca7086e..a801fbc19 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -647,4 +647,23 @@ function is_adviser() return ($user['adviser'] == 'true'); } + +/* + * Return mail address as display text + * @return string +*/ +function get_email_address_as_display_text($email_address) +{ + global $conf; + + if (is_adviser()) + { + return 'adviser.mode@'.$_SERVER['SERVER_NAME']; + } + else + { + return $email_address; + } +} + ?> |