文章搜索只能搜索当前分类

2016-07-07 15:33 来源:www.chinab4c.com 作者:ecshop专家

lib_article.php里的get_article_count函数去掉试下

' . get_article_children($cat_id) . ' AND

回答:
还是不行

你更新下缓存试下

少了一步:下面补充。
lib_article.php
  1. if ($requirement != '')
  2. {
  3. $sql = 'SELECT article_id, title, author, add_time, file_url, open_type' .
  4. ' FROM ' .$GLOBALS['ecs']->table('article') .
  5. ' WHERE is_open = 1 AND ' . $cat_str . ' ANDtitle like \'%' . $requirement . '%\' ' .
  6. ' ORDER BY article_type DESC, article_id DESC';
  7. }
复制代码
修改去掉 . $cat_str

不错!这个应该加新版里面