|
From: Paul S. O. <ps...@us...> - 2002-03-18 22:59:42
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv4292
Modified Files:
search.php
Log Message:
Fix default AND for word concaten..blah blah
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/search.php,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -r1.64 -r1.65
*** search.php 18 Mar 2002 13:35:43 -0000 1.64
--- search.php 18 Mar 2002 22:59:39 -0000 1.65
***************
*** 69,77 ****
$search_id = ( isset($HTTP_GET_VARS['search_id']) ) ? $HTTP_GET_VARS['search_id'] : "";
! $show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : "posts";
if( isset($HTTP_POST_VARS['search_terms']) )
{
! $search_terms = ( $HTTP_POST_VARS['search_terms'] == "all" ) ? 1 : 0;
}
else
--- 69,77 ----
[...1185 lines suppressed...]
! 'L_RETURN_FIRST' => $lang['Return_first'],
! 'L_CHARACTERS' => $lang['characters_posts'],
! 'L_SORT_BY' => $lang['Sort_by'],
! 'L_SORT_ASCENDING' => $lang['Sort_Ascending'],
! 'L_SORT_DESCENDING' => $lang['Sort_Descending'],
! 'L_SEARCH_PREVIOUS' => $lang['Search_previous'],
! 'L_DISPLAY_RESULTS' => $lang['Display_results'],
!
! 'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=results"),
! 'S_CHARACTER_OPTIONS' => $s_characters,
! 'S_FORUM_OPTIONS' => $s_forums,
! 'S_CATEGORY_OPTIONS' => $s_categories,
! 'S_TIME_OPTIONS' => $s_time,
! 'S_SORT_OPTIONS' => $s_sort_by,
! 'S_HIDDEN_FIELDS' => $s_hidden_fields)
);
! $template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
|