Changeset 6527

Show
Ignore:
Timestamp:
08/07/08 15:50:42 (5 months ago)
Author:
inureyes
Message:

refs #1070

  • 버그 수정
Location:
branches/1.7
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.7/doc/changes_ko

    r6507 r6527  
    77 * 블로그  : 시스템의 inline 스타일이 카테고리/태그 출력에서 반영되지 않던 문제 수정 (#871) 
    88 * 블로그  : 오픈아이디 발급하기를 눌러 발급한 후 원래 블로그로 돌아오면 로그인이 되지 않는 문제 수정 (#1062) 
     9 * 블로그  : 리스트만 출력시 페이징이 두개 등장하는 문제 수정 (#1070) 
    910 * 관리자  : 관리자 권한에 상관 없이 모든 댓글과 방명록을 볼 수 있는 문제 수정 (#1069) 
    1011 
  • branches/1.7/lib/piece/blog/list.php

    r6184 r6527  
    3737    dress('list_count', isset($list['count']) ? $list['count'] : '0', $listView); 
    3838    $listView = fireEvent('ViewList', $listView, $list); 
    39     $listView = $listView.CRLF.'[##_paging_list_##]'; 
     39    if(empty($entries)) $listView = $listView.CRLF.'[##_paging_list_##]'; 
    4040     
    4141    dress('list', $listView, $view);