diff options
author | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-12-11 02:29:11 +0000 |
---|---|---|
committer | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-12-11 21:14:05 +0000 |
commit | 3560460eb6dad82b7fc81278475433d326ec0628 (patch) | |
tree | b259bb3d1c62cb8bd35923b819aede56c606b4f9 | |
parent | c038734986ab5f96627239a1a64288220e738dd2 (diff) | |
download | ikiwiki-3560460eb6dad82b7fc81278475433d326ec0628.tar ikiwiki-3560460eb6dad82b7fc81278475433d326ec0628.tar.gz |
comments: don't interpolate IP into anonymous user's "name"
If an admin wants the IP in the comment display template they can still
get it (the default template shows it).
-rw-r--r-- | IkiWiki/Plugin/comments.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index 4fa82f467..e43bbc49e 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -89,12 +89,10 @@ sub preprocess { # {{{ ($commentauthorurl, $commentauthor) = linkuser($params{username}); } - elsif (defined $params{ip}) { - $commentip = $params{ip}; - $commentauthor = sprintf( - gettext("Anonymous (IP: %s)"), $params{ip}); - } else { + if (defined $params{ip}) { + $commentip = $params{ip}; + } $commentauthor = gettext("Anonymous"); } |