码迷,mamicode.com
首页 > 其他好文 > 详细

Discuz! 搜索分类信息的字段的实现

时间:2014-07-22 22:48:54      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:discuz   style   blog   color   os   文件   

修改文件:search_forum.php
修改方法:
step1:   将 $sqlsrch = $srchtype == ‘fulltext‘ ? 行后修改成

 
    "FROM pre_forum_typeoptionvar o, ".DB::table(getposttable($seltableid))." p, ".DB::table(forum_thread)." t WHERE $digestltd t.fid IN ($fids) $topltd AND p.tid=t.tid AND p.invisible=‘0‘ AND o.tid=t.tid" :
    "FROM pre_forum_typeoptionvar o, ".DB::table(forum_thread)." t WHERE $digestltd t.fid IN ($fids) $topltd AND o.tid=t.tid";

 


step2:    将 if($srchtxt) { 的下一行修改成

$srcharr = $srchtype == fulltext ? searchkey($keyword, "(p.message LIKE ‘%{text}%‘ OR p.subject LIKE ‘%{text}%‘ OR o.value LIKE ‘%{text}%‘)", true) : searchkey($keyword,"t.subject LIKE ‘%{text}%‘ OR o.value LIKE ‘%{text}%‘", true);

 


discuz x3.2测试通过。

Discuz! 搜索分类信息的字段的实现,布布扣,bubuko.com

Discuz! 搜索分类信息的字段的实现

标签:discuz   style   blog   color   os   文件   

原文地址:http://www.cnblogs.com/charlesathome/p/3855947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!