Changeset 3320

Show
Ignore:
Timestamp:
05/24/07 01:57:04 (20 months ago)
Author:
jparker
Message:

#409

  • 댓글알리미 검색 결과가 날짜 역순으로 출력되는 현상 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/lib/model/blog.comment.php

    r3299 r3320  
    9898            $sql .= " AND ((c.name LIKE '%$search%') OR (c.homepage LIKE '%$search%') OR (c.comment LIKE '%$search%')) "; 
    9999        } 
    100         $sql .= $childListStr . ' ORDER BY c.modified ASC '; 
     100        $sql .= $childListStr . ' ORDER BY c.modified DESC '; 
    101101    } 
    102102    return fetchWithPaging($sql, $page, $count);