aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_remind.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-20 18:39:35 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-20 18:39:35 +0000
commit5029170afbe7e74a0c46b3b3f1ecca83697ced42 (patch)
tree4762e7d8d4d3b723d681f0bf5a88f65b266978b2 /phpBB/includes/ucp/ucp_remind.php
parent037f0bf4da281981dd5bc0e217325d2c49531409 (diff)
downloadforums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.gz
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.bz2
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.tar.xz
forums-5029170afbe7e74a0c46b3b3f1ecca83697ced42.zip
- fixed a few smaller things
git-svn-id: file:///svn/phpbb/trunk@5952 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_remind.php')
-rw-r--r--phpBB/includes/ucp/ucp_remind.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_remind.php b/phpBB/includes/ucp/ucp_remind.php
index 6b2c6240ae..a0976da443 100644
--- a/phpBB/includes/ucp/ucp_remind.php
+++ b/phpBB/includes/ucp/ucp_remind.php
@@ -69,8 +69,8 @@ class ucp_remind
$messenger->assign_vars(array(
'SITENAME' => $config['sitename'],
- 'USERNAME' => $username,
- 'PASSWORD' => $user_password,
+ 'USERNAME' => html_entity_decode($username),
+ 'PASSWORD' => html_entity_decode($user_password),
'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $config['board_email_sig']),
'U_ACTIVATE' => "$server_url/ucp.$phpEx?mode=activate&u=$user_id&k=$user_actkey")