diff options
author | andi <andi@splitbrain.org> | 2005-01-26 21:15:26 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-01-26 21:15:26 +0100 |
commit | 7a82afdc989503bfc9541db8797ce108a7166c77 (patch) | |
tree | 33e01036802df0347f1914705ca8ca69b138fab1 /inc | |
parent | 9faf6e0faeed8c331903f039c655a558b154a8cd (diff) | |
download | rpg-7a82afdc989503bfc9541db8797ce108a7166c77.tar.gz rpg-7a82afdc989503bfc9541db8797ce108a7166c77.tar.bz2 |
uservariable replacement in usermails
darcs-hash:20050126201526-9977f-9112c4ff4742a42578e3f95fb683464747def25e.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/common.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php index 7700a71c9..5946e299a 100644 --- a/inc/common.php +++ b/inc/common.php @@ -755,6 +755,7 @@ function notify($id,$rev="",$summary=""){ $text = str_replace('@NEWPAGE@',wl($id,'','',true),$text); $text = str_replace('@DOKUWIKIURL@',getBaseURL(true),$text); $text = str_replace('@SUMMARY@',$summary,$text); + $text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text); if($rev){ $subject = $lang['mail_changed'].' '.$id; |