Changeset 5447 for trunk/lib/model/blog.rss.php
- Timestamp:
- 02/29/08 03:01:03 (10 months ago)
- Files:
-
- 1 modified
-
trunk/lib/model/blog.rss.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/model/blog.rss.php
r5376 r5447 176 176 $channel['title'] = $blog['title']. ': '._text('최근 댓글 목록'); 177 177 178 $result = getRecentComments($blogid, 20, false, true);178 $result = getRecentComments($blogid, getBlogSetting('commentsOnRSS',20), false, true); 179 179 if (!$result) 180 180 $result = array(); … … 256 256 $channel = initializeRSSchannel($blogid); 257 257 $channel['title'] = RSSMessage($blog['title']. ': '._text('최근 트랙백 목록')); 258 $result = getRecentTrackbacks($blogid, 20, true);258 $result = getRecentTrackbacks($blogid, getBlogSetting('commentsOnRSS',20), true); 259 259 if (!$result) 260 260 $result = array();
