Show
Ignore:
Timestamp:
05/17/08 08:07:52 (8 months ago)
Author:
creorix
Message:

#964

  • useSloganOnPost 설정을 공지도 따르도록 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/model/blog.notice.php

    r5285 r5958  
    2525    global $database; 
    2626    $visibility = doesHaveOwnership() ? '' : 'AND visibility = 2'; 
    27     return POD::queryAll("SELECT id, title, published FROM {$database['prefix']}Entries WHERE blogid = $blogid AND draft = 0 $visibility AND category = -2 ORDER BY published DESC"); 
     27    return POD::queryAll("SELECT id, title, slogan, published FROM {$database['prefix']}Entries WHERE blogid = $blogid AND draft = 0 $visibility AND category = -2 ORDER BY published DESC"); 
    2828} 
    2929?>