Show
Ignore:
Timestamp:
08/26/08 09:02:11 (4 months ago)
Author:
vollmerk
Message:

fixed two sql queries and the slicing on search (Thx sylvander)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/class/browse.class.php

    r1681 r1698  
    946946                // Limit is based on the users preferences if this is not a simple browse because we've got too much here 
    947947                if (count($object_ids) > self::$start AND !self::is_simple_browse()) {  
    948                         $object_ids = array_slice($object_ids,self::$start,$limit);  
     948                        $object_ids = array_slice($object_ids,self::$start,self::$offset);  
    949949                }  
    950950