Changeset 1785

Show
Ignore:
Timestamp:
02/10/08 14:41:27 (5 months ago)
Author:
cfriesen
Message:

undo the changes made to the core in the attempt to make the plugin change the output count

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gregarius/feed.php

    r1780 r1785  
    755755        } 
    756756 
    757         if(array_key_exists('count', $_GET) && !empty($_GET['count'])) { 
    758             $items = new PaginatedItemList($_GET['count']); 
    759         } else { 
    760             $items = new PaginatedItemList(); 
    761         } 
     757        $items = new PaginatedItemList(); 
    762758 
    763759    $severalFeeds = (($fid != null) || ($vfid != null)); 
  • trunk/gregarius/index.php

    r1780 r1785  
    128128 
    129129    _pf('populate unread items'); 
    130   if(array_key_exists('count', $_GET) && !empty($_GET['count'])) { 
    131         $unreadItems = new PaginatedItemList($_GET['count']); 
    132     } else { 
    133         $unreadItems = new PaginatedItemList(); 
    134     } 
     130    $unreadItems = new PaginatedItemList(); 
    135131     
    136132    $numItems = getConfig('rss.output.frontpage.numitems');