|
From: Paul S. O. <ps...@us...> - 2001-11-17 17:42:49
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv8568
Modified Files:
search.php
Log Message:
Fixed bug #482127 ... part 2, fixes post_subject too
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** search.php 2001/11/17 17:40:19 1.29
--- search.php 2001/11/17 17:42:46 1.30
***************
*** 852,855 ****
--- 852,859 ----
$message = preg_replace($orig_word, $replacement_word, $message);
}
+ else
+ {
+ $post_subject = ( $searchset[$i]['post_subject'] != "" ) ? $searchset[$i]['post_subject'] : $topic_title;
+ }
if($board_config['allow_smilies'] && $searchset[$i]['enable_smilies'])
|