<?php
######################################################## 
## Mod Title:   Search This Forum 
## Mod Version: 1.0 
## Author:       Matthijs van de Water <matthijs@beryllium.net> 
## Description:  This will add a search box to the bottom of 
##               viewforum. 
## 
## Installation Level:  easy 
## Installation Time:   5-8 Minutes 
## Files To Edit:       3 
######################################################## 


#-----[ FIND in viewforum.php ]------------------------------------------ 

    
'S_AUTH_LIST' => $s_auth_can

#-----[ ADD after ]------------------------------------------ 

    
'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=results"), 
    
'L_SEARCH_THIS_FORUM' => $lang['Search_this_forum'], 


#-----[ FIND in templates/subSilver/viewforum_body.tpl ]------------------- 

    
<td align="right">{JUMPBOX}</td

#-----[ ADD before ]------------------------------------------ 

    
<td align="left"
      <
span class="gensmall"
      <
form action="{S_SEARCH_ACTION}" method="POST"
      {
L_SEARCH_THIS_FORUM} : <input type="text" style="width: 100px" class="post" name="search_keywords" size="30" /> 
      <
input type="submit" value="{L_GO}" class="liteoption" /> 
      <
input type="hidden" name="search_forum" value="{FORUM_ID}" /> 
      <
input type="hidden" name="show_results" value="topics"
      <
input type="hidden" name="search_terms" value="any"
      <
input type="hidden" name="search_fields" value="all"
      </
form
      </
span
    </
td


#-----[ FIND in language/lang_english/lang_main.php ]-------------------- 

    
$lang['View_forum'] = "View Forum"


#-----[ ADD after ]------------------------------------------ 

    
$lang['Search_this_forum'] = "Search this forum for"


#----------------------------------------------- 

?>