|
From: Paul S. O. <ps...@us...> - 2001-11-09 13:00:06
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv6988 Modified Files: search.php Log Message: New search system, this isn't final, needs alterations, etc. can redeem this against the full priced version with included coupon Index: search.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/search.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** search.php 2001/10/16 14:43:03 1.22 --- search.php 2001/11/09 13:00:03 1.23 *************** *** 21,30 **** ***************************************************************************/ - // - // Massive overhaul for phpBB2, originally based on search code - // I knocked together for my own website - // - // PSO : 2001 - // $phpbb_root_path = "./"; include($phpbb_root_path . 'extension.inc'); [...1278 lines suppressed...] $template->assign_vars(array( ! "PAGINATION" => generate_pagination($base_url, $total_match_count, $per_page, $start), ! "ON_PAGE" => floor( $start / $per_page ) + 1, ! "TOTAL_PAGES" => ceil( $total_match_count / $per_page ), "L_OF" => $lang['of'], *************** *** 1099,1103 **** // $previous_days = array(0, 1, 7, 14, 30, 90, 180, 364); ! $previous_days_text = array($lang['All'], "1 " . $lang['Day'], "7 " . $lang['Days'], "2 " . $lang['Weeks'], "1 " . $lang['Month'], "3 ". $lang['Months'], "6 " . $lang['Months'], "1 " . $lang['Year']); $s_time = ""; --- 1110,1114 ---- // $previous_days = array(0, 1, 7, 14, 30, 90, 180, 364); ! $previous_days_text = array($lang['All_Posts'], $lang['1_Day'], $lang['7_Days'], $lang['2_Weeks'], $lang['1_Month'], $lang['3_Months'], $lang['6_Months'], $lang['1_Year']); $s_time = ""; |