Changeset 1780 for trunk/gregarius/feed.php
- Timestamp:
- 02/03/08 14:43:25 (10 months ago)
- Files:
-
- 1 modified
-
trunk/gregarius/feed.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/feed.php
r1714 r1780 34 34 define ('ACT_NAV_SUCC_POSTFIX',' →'); 35 35 36 37 38 39 36 // Show unread items on the front page? 40 37 // default to the config value, user can override this via a cookie … … 261 258 $iid = $cid = null; 262 259 } 263 264 265 266 260 267 261 // If we have no channel-id something went terribly wrong. … … 728 722 729 723 function doItems($cids,$fid,$vfid,$title,$iid,$y,$m,$d,$nv,$show_what,$show_private) { 730 731 724 $do_show=$show_what; 732 725 … … 762 755 } 763 756 764 $items = new PaginatedItemList(); 757 if(array_key_exists('count', $_GET) && !empty($_GET['count'])) { 758 $items = new PaginatedItemList($_GET['count']); 759 } else { 760 $items = new PaginatedItemList(); 761 } 762 765 763 $severalFeeds = (($fid != null) || ($vfid != null)); 766 764
