From c285a885ae3a45a1ccb765553cea65b15331e6f1 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 20 Jul 2001 15:16:03 +0000 Subject: Fixed errors, non-sid-appended urls, lang switchovers, etc. git-svn-id: file:///svn/phpbb/trunk@707 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/privmsg.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'phpBB/privmsg.php') diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php index f4bc503ba9..e78b4f733c 100644 --- a/phpBB/privmsg.php +++ b/phpBB/privmsg.php @@ -175,7 +175,7 @@ if($mode == "read") $savebox_url = " " . $lang['Saved'] . ""; $post_new_mesg_url = ""; - $post_reply_mesg_url = ($folder == "inbox") ? "" : ""; + $post_reply_mesg_url = ($folder == "inbox") ? "" : ""; $s_hidden_fields = ""; @@ -239,7 +239,7 @@ if($mode == "read") $aim_img = ($privmsg['user_aim']) ? "" : ""; - $msn_img = ($privmsg['user_msnm']) ? "" : ""; + $msn_img = ($privmsg['user_msnm']) ? "" : ""; $yim_img = ($privmsg['user_yim']) ? "" : ""; @@ -435,7 +435,7 @@ else if($mode == "post" || $mode == "reply" || $mode == "edit") } $privmsg = $db->sql_fetchrow($pm_reply_status); - $subject = $lang['Re'] . ":" . stripslashes($privmsg['privmsgs_subject']); + $subject = ( (strstr("Re:", $privmsg['privmsgs_subject'])) ? $lang['Re'] . ":" : "" ) . stripslashes($privmsg['privmsgs_subject']); $to_username = stripslashes($privmsg['username']); $to_userid = $privmsg['user_id']; @@ -1063,7 +1063,7 @@ $outbox_url .= ($folder != "outbox") ? " "; $savebox_url .= ($folder != "savebox") ? "" . $lang['Saved'] . "" : "" . $lang['Saved'] . ""; -$post_new_mesg_url = ""; +$post_new_mesg_url = ""; // // General SQL to obtain messages -- cgit v1.2.1