搜索时允许只搜索标题)
發表於 : 2006-06-13 , 0:30
我的论坛里很多朋友都吵着要这个功能,自己就做了一个,顺便整理成了MOD,放在这里,如果有用得上的朋友就用吧:
http://phpbb-tw.net/phpbb/viewtopic.php?t=35759
演示地址: http://www.firefox.net.cn
代碼:
##############################################################
## MOD Title: Search Subject Only
## MOD Author: puhongyi < puhongyi@gmail.com > http://www.firefox.net.cn
## MOD Description: Search Subject Only (搜索时允许只搜索标题)
## MOD Version: 1.0.0
## Installation Level: Easy
## Installation Time: 2~3 Minutes
## Files To Edit: search.php
language/lang_chinese_simplified/lang_main.php
templates/subSilver/search_body.tpl
## Included Files: (n/a)
##############################################################
##############################################################
## MOD History:
##
## 2005-06-6 - Version 1.0.0
## - Initial Release
##
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##安装之前请先备份你的论坛。
##############################################################
#
#打开search.php
#
#
#找到
#
WHERE post_text LIKE '$match_word'
$search_msg_only";
#
#在后面添�[
#
if ($HTTP_POST_VARS['search_fields']=="titleonly")
{
$sql = "SELECT post_id
FROM " . POSTS_TEXT_TABLE . "
WHERE post_subject LIKE '$match_word'";
}
#
#找到
#
'L_SEARCH_MESSAGE_TITLE' => $lang['Search_title_msg'],
#
#在后面添�[
#
'L_SEARCH_TITLE_ONLY' => $lang['Search_title_only'],
#
#打开 templates/subSilver/search_body.tpl
#
#
#找到
#
{L_SEARCH_MESSAGE_ONLY}
#
#在行内后面添�[
#
<br /><input type="radio" name="search_fields" value="titleonly" /> {L_SEARCH_TITLE_ONLY}
#
#打开 language/lang_chinese_simplified/lang_main.php
#
#
#找到
#
$lang['Search_msg_only'] = '仅搜索文章内容';
#
#在后面添�[
#
$lang['Search_title_only'] = '仅搜索标题内容';
#
#完毕
#
http://phpbb-tw.net/phpbb/viewtopic.php?t=35759
演示地址: http://www.firefox.net.cn
代碼:
##############################################################
## MOD Title: Search Subject Only
## MOD Author: puhongyi < puhongyi@gmail.com > http://www.firefox.net.cn
## MOD Description: Search Subject Only (搜索时允许只搜索标题)
## MOD Version: 1.0.0
## Installation Level: Easy
## Installation Time: 2~3 Minutes
## Files To Edit: search.php
language/lang_chinese_simplified/lang_main.php
templates/subSilver/search_body.tpl
## Included Files: (n/a)
##############################################################
##############################################################
## MOD History:
##
## 2005-06-6 - Version 1.0.0
## - Initial Release
##
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##安装之前请先备份你的论坛。
##############################################################
#
#打开search.php
#
#
#找到
#
WHERE post_text LIKE '$match_word'
$search_msg_only";
#
#在后面添�[
#
if ($HTTP_POST_VARS['search_fields']=="titleonly")
{
$sql = "SELECT post_id
FROM " . POSTS_TEXT_TABLE . "
WHERE post_subject LIKE '$match_word'";
}
#
#找到
#
'L_SEARCH_MESSAGE_TITLE' => $lang['Search_title_msg'],
#
#在后面添�[
#
'L_SEARCH_TITLE_ONLY' => $lang['Search_title_only'],
#
#打开 templates/subSilver/search_body.tpl
#
#
#找到
#
{L_SEARCH_MESSAGE_ONLY}
#
#在行内后面添�[
#
<br /><input type="radio" name="search_fields" value="titleonly" /> {L_SEARCH_TITLE_ONLY}
#
#打开 language/lang_chinese_simplified/lang_main.php
#
#
#找到
#
$lang['Search_msg_only'] = '仅搜索文章内容';
#
#在后面添�[
#
$lang['Search_title_only'] = '仅搜索标题内容';
#
#完毕
#