1

주제: 2688 댓글알리미 목록에서 검색이 안되는 문제

최신 리비전에 댓글알리미 목록에서 검색이 작동하지 않는 것 같습니다.

2

답글: 2688 댓글알리미 목록에서 검색이 안되는 문제

lunamoth 작성:

최신 리비전에 댓글알리미 목록에서 검색이 작동하지 않는 것 같습니다.

lib/model/comment.php 73번재줄 개선되야 할듯 합니다. implode() 처리할때 배열의 Null값도 포함되어 에러~~
-원본

$childList = array_unique(fetchQueryColumn($preQuery));
$childListStr = (count($childList) == 0) ? '' : ('AND c.id IN ( ' . implode(', ',$childList) . ' ) ') ;

-나름대로 개선

$childListTemp = array_unique(fetchQueryColumn($preQuery));
$childList = array();
foreach ($childListTemp as $item) if(!is_null($item)) array_push($childList, $item);
$childListStr = (count($childList) == 0) ? '' : ('AND c.id IN ( ' . implode(', ',$childList) . ' ) ') ;

array_unique()사용시 공백(Null)은 필히 제거하라는 지침도 있더군요.

당신의 삶속에 매화꽃 향기처럼 늘 아름다운 향기로 가득하길...
# J.Parker

3

답글: 2688 댓글알리미 목록에서 검색이 안되는 문제

처리 완료 smile

"Everything looks different on the other side."

-Ian Malcomm, from Michael Crichton's 'The Jurassic Park'