|
From: Doug K. <dou...@us...> - 2002-03-31 19:13:08
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv6785
Modified Files:
search.php
Log Message:
Fixing bug 536812: search.php - total_match_count
Thanks acydburn!
Not a big deal, just did what acydburn recommended.
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -r1.71 -r1.72
*** search.php 31 Mar 2002 16:08:06 -0000 1.71
--- search.php 31 Mar 2002 19:13:06 -0000 1.72
***************
*** 1164,1167 ****
--- 1164,1171 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
+ else
+ {
+ message_die(GENERAL_MESSAGE, $lang['No_search_match']);
+ }
}
***************
*** 1295,1297 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 1299,1301 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|