Changeset 1677

Show
Ignore:
Timestamp:
01/20/07 21:50:50 (22 months ago)
Author:
mbonetti
Message:

temporar fix for paginated item list when rss.output.frontpage.numitems is
set to zero.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/cls/items.php

    r1676 r1677  
    531531            $this ->  itemsPerPage = $itemsPerPage; 
    532532        } 
     533         
     534        if ($this -> itemsPerPage <= 0) { 
     535            $this -> itemsPerPage = 50; 
     536        } 
    533537    } 
    534538    function populate($sqlWhere, $sqlOrder="", $startItem = 0, $itemCount = -1, $hint = ITEM_SORT_HINT_MIXED, $includeDeprecated = false) {