Changeset 5447
- Timestamp:
- 02/29/08 03:01:03 (9 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
interface/owner/setting/blog/rss/index.php (modified) (1 diff)
-
lib/model/blog.rss.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/setting/blog/rss/index.php
r5076 r5447 15 15 requireStrictRoute(); 16 16 17 // EOLIN RSS18 17 setEntriesOnRSS($blogid, $_POST['entriesOnRSS']); 19 18 setCommentsOnRSS($blogid, $_POST['commentsOnRSS']); -
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();
