diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-14 14:49:43 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-08-14 14:49:43 +0000 |
| commit | 5a9dd45aaa8b6625fbd9970112a3ab840b9d8144 (patch) | |
| tree | 52a1f626667618f0aca27cfcc27e14eb793d0ab9 /phpBB/profile.php | |
| parent | 18898a19c483b141ae370d83a4b05a742a47e16c (diff) | |
| download | forums-5a9dd45aaa8b6625fbd9970112a3ab840b9d8144.tar forums-5a9dd45aaa8b6625fbd9970112a3ab840b9d8144.tar.gz forums-5a9dd45aaa8b6625fbd9970112a3ab840b9d8144.tar.bz2 forums-5a9dd45aaa8b6625fbd9970112a3ab840b9d8144.tar.xz forums-5a9dd45aaa8b6625fbd9970112a3ab840b9d8144.zip | |
Error in name of notifyreply var
git-svn-id: file:///svn/phpbb/trunk@867 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
| -rw-r--r-- | phpBB/profile.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index e5b64a74a0..4b873ef78c 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -686,9 +686,11 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode'])) $emailer->set_subject($lang['Reactivate']); $emailer->extra_headers($email_headers); - $emailer->assign_vars(array("SITENAME" => $board_config['sitename'], - "U_ACTIVATE" => "http://".$SERVER_NAME.$PHP_SELF."?mode=activate&act_key=$user_actkey", - "EMAIL_SIG" => $board_config['board_email'])); + $emailer->assign_vars(array( + "SITENAME" => $board_config['sitename'], + "U_ACTIVATE" => "http://".$SERVER_NAME.$PHP_SELF."?mode=activate&act_key=$user_actkey", + "EMAIL_SIG" => $board_config['board_email']) + ); $emailer->send(); $emailer->reset(); } @@ -902,8 +904,8 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode'])) "NOTIFY_PM_NO" => (!$notifypm) ? "checked=\"checked\"" : "", "ALWAYS_ADD_SIGNATURE_YES" => ($attachsig) ? "checked=\"checked\"" : "", "ALWAYS_ADD_SIGNATURE_NO" => (!$attachsig) ? "checked=\"checked\"" : "", - "NOTIFY_REPLY_YES" => ($notify_reply) ? "checked=\"checked\"" : "", - "NOTIFY_REPLY_NO" => (!$notify_reply) ? "checked=\"checked\"" : "", + "NOTIFY_REPLY_YES" => ($notifyreply) ? "checked=\"checked\"" : "", + "NOTIFY_REPLY_NO" => (!$notifyreply) ? "checked=\"checked\"" : "", "ALWAYS_ALLOW_BBCODE_YES" => ($allowbbcode) ? "checked=\"checked\"" : "", "ALWAYS_ALLOW_BBCODE_NO" => (!$allowbbcode) ? "checked=\"checked\"" : "", "ALWAYS_ALLOW_HTML_YES" => ($allowhtml) ? "checked=\"checked\"" : "", |
