我的论坛里很多朋友都吵着要这个功能,自己就做了一个,顺便整理成了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'] = '仅搜索标题内容';
#
#完毕
#
搜索时允许只搜索标题)
- yehrussell
- 忍辱、精進、靜慮、般若波羅密
- 主題中的帖子: 2
- 文章: 1133
- 註冊時間: 2006-01-20 , 10:19
- 個人狀態: 非常忙碌中!
- 性別: 公仔
- yehrussell
- 忍辱、精進、靜慮、般若波羅密
- 主題中的帖子: 2
- 文章: 1133
- 註冊時間: 2006-01-20 , 10:19
- 個人狀態: 非常忙碌中!
- 性別: 公仔
Re: 搜索时允许只搜索标题)
我的論壇裡很多朋友都吵著要這個功能,自己就做了一個,順便整理成了MOD,放在這裡,如果有用得上的朋友就用吧:
演示位址: http://www.firefox.net.cn
演示位址: http://www.firefox.net.cn
代碼: 選擇全部
##############################################################
## MOD Title: Search Subject Only
## MOD Author: puhongyi <puhongyi> www.firefox.net.cn
## MOD Description: Search Subject Only (搜索時允許只搜索標題)
## MOD Version: 1.0.0 \r
## 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> {L_SEARCH_TITLE_ONLY}
#
#開啟 language/lang_chinese_simplified/lang_main.php
#
#
#找到
#
$lang['Search_msg_only'] = '僅搜索文章內容';
#
#在後面添�[
#
$lang['Search_title_only'] = '僅搜索標題內容';
#
#完畢
#