diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php index b1ce1074e4..9d39f3b282 100644 --- a/phpBB/privmsg.php +++ b/phpBB/privmsg.php @@ -674,7 +674,7 @@ else if($mode == "post" || $mode == "reply" || $mode == "edit") { if($to_userdata['user_notify_pm'] && !empty($to_userdata['user_email'])) { - //mail($to_userdata['user_email'], $lang['Notification_subject'], $email_msg, "From: ".$board_config['board_email_from']."\r\n"); + @mail($to_userdata['user_email'], $lang['Notification_subject'], $email_msg, "From: ".$board_config['board_email_from']."\r\n"); } } @@ -782,7 +782,7 @@ else if($mode == "post" || $mode == "reply" || $mode == "edit") if($board_config['allow_html']) { - $html_status = $lang['HTML'] . $lang['is_ON']; + $html_status = $lang['ON']; $html_toggle = ' $message_input, "HTML_STATUS" => $html_status, "HTML_TOGGLE" => $html_toggle, + "SMILIES_STATUS" => $smilies_status, "SMILE_TOGGLE" => $smile_toggle, "SIG_TOGGLE" => $sig_toggle, "NOTIFY_TOGGLE" => $notify_toggle, @@ -879,6 +885,9 @@ else if($mode == "post" || $mode == "reply" || $mode == "edit") "L_POST_A" => $post_a, "L_FIND_USERNAME" => $lang['Find_username'], "L_FIND" => $lang['Find'], + "L_HTML_IS" => $lang['HTML'] . " " . $lang['is'], + "L_BBCODE_IS" => $lang['BBCode'] . " " . $lang['is'], + "L_SMILIES_ARE" => $lang['Smilies'] . " " . $lang['are'], "S_ALPHA_SELECT" => $user_alpha_select, "S_NAMES_SELECT" => $user_names_select, diff --git a/phpBB/templates/PSO/privmsgs_posting_body.tpl b/phpBB/templates/PSO/privmsgs_posting_body.tpl index 7364cab2d7..6add177752 100644 --- a/phpBB/templates/PSO/privmsgs_posting_body.tpl +++ b/phpBB/templates/PSO/privmsgs_posting_body.tpl @@ -14,10 +14,10 @@ function insertCode(formObj, selectObj){