|
From: Paul S. O. <ps...@us...> - 2001-12-16 15:30:40
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv8948
Modified Files:
privmsg.php
Log Message:
Implement solution for bug #493663 Re: in reply subject
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -r1.62 -r1.63
*** privmsg.php 2001/12/14 21:13:15 1.62
--- privmsg.php 2001/12/16 15:30:37 1.63
***************
*** 1275,1279 ****
$privmsg = $db->sql_fetchrow($pm_reply_status);
! $privmsg_subject = ( (strstr("Re:", $privmsg['privmsgs_subject'])) ? $lang['Re'] . ":" : "" ) . $privmsg['privmsgs_subject'];
$to_username = $privmsg['username'];
--- 1275,1279 ----
$privmsg = $db->sql_fetchrow($pm_reply_status);
! $privmsg_subject = ( ( !preg_match("/^Re:/", $privmsg['privmsgs_subject']) ) ? "Re: " : "" ) . $privmsg['privmsgs_subject'];
$to_username = $privmsg['username'];
|