we254/addons/fy_lessonv2/inc/mobile/search.php
@@ -82,7 +82,7 @@
   
   /* 综合排序 */
   if ($sort == 'general') {
      $condition .= " AND a.lesson_type=0";
      $condition .= " AND a.lesson_type=0 AND (a.knowledge_id is null or trim(a.knowledge_id)='') ";
      $sortname = '普通课程';
   } elseif ($sort == 'apply') {
      $condition .= " AND a.lesson_type=1";
@@ -91,7 +91,7 @@
      $condition .= " AND a.lesson_type=3";
      $sortname = '直播课程';
   } elseif ($sort == 'knowledge') {
      $condition .= " AND a.lesson_type=5";
      $condition .= " AND a.lesson_type=0 AND (a.knowledge_id is not null and trim(a.knowledge_id)<>'')  ";
      $sortname = '知识点课';
   } elseif ($sort == 'price') {
      $order = " ORDER BY a.price ASC, a.displayorder DESC ";