From 8e6db0334b215bcd1352f04065120930f86c2a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sat, 24 Mar 2007 18:36:43 +0000 Subject: [PATCH] Link usernames in comments to the contact form instead of exposing email addresses --- include/comment.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/comment.php b/include/comment.php index 45a7020..046ce82 100644 --- a/include/comment.php +++ b/include/comment.php @@ -454,7 +454,8 @@ function forum_lookup_user($iUserId) { $oUser = new User($iUserId); if($_SESSION['current']->isLoggedIn()) - $sMailto = '' . $oUser->sRealname . ''; + $sMailto = '' .$oUser->sRealname . ''; else $sMailto = $oUser->sRealname; }