summaryrefslogtreecommitdiff
path: root/inc/common.php
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2010-04-12 10:28:55 +0200
committerAdrian Lang <lang@cosmocode.de>2010-04-12 10:28:55 +0200
commit52d6039fb46a59aba6634053375c77a5469fe238 (patch)
tree6e4cac477984c3eed1e1dbc69ab05b83ca24cff9 /inc/common.php
parentf40e778bd458a77910ed4a05040cbf520b6beabb (diff)
downloadrpg-52d6039fb46a59aba6634053375c77a5469fe238.tar.gz
rpg-52d6039fb46a59aba6634053375c77a5469fe238.tar.bz2
Add missing at sign
Diffstat (limited to 'inc/common.php')
-rw-r--r--inc/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php
index fadf71b03..144f8e48c 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -1107,7 +1107,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false,$replace=array()){
$text = str_replace('@SUMMARY@',$summary,$text);
$text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text);
$text = str_replace('@NAME@',$INFO['userinfo']['name'],$text);
- $text = str_replace('@MAIL',$INFO['userinfo']['mail'],$text);
+ $text = str_replace('@MAIL@',$INFO['userinfo']['mail'],$text);
foreach ($replace as $key => $substitution) {
$text = str_replace('@'.strtoupper($key).'@',$substitution, $text);