Update of /cvsroot/xoops/xoops-current/html/include
In directory usw-pr-cvs1:/tmp/cvs-serv21387
Modified Files:
commentform.inc.php
Log Message:
no message
Index: commentform.inc.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/include/commentform.inc.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** commentform.inc.php 17 Jul 2002 07:39:34 -0000 1.2
--- commentform.inc.php 20 Sep 2002 17:09:49 -0000 1.3
***************
*** 36,40 ****
echo "<br /><br /><b>". _SUBJECT ."</b><br />";
! if ( !eregi("^re:",$subject) ) {
$subject = "Re: ".substr($subject,0,56);
}
--- 36,40 ----
echo "<br /><br /><b>". _SUBJECT ."</b><br />";
! if ( !preg_match("/^re:/i",$subject) ) {
$subject = "Re: ".substr($subject,0,56);
}
|