[pLog-svn] r2652 - plog/trunk/class/gallery/dao

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Nov 27 18:54:24 GMT 2005


Author: oscar
Date: 2005-11-27 18:54:24 +0000 (Sun, 27 Nov 2005)
New Revision: 2652

Modified:
   plog/trunk/class/gallery/dao/galleryresources.class.php
Log:
fixed a problem with the parameters in array_slice


Modified: plog/trunk/class/gallery/dao/galleryresources.class.php
===================================================================
--- plog/trunk/class/gallery/dao/galleryresources.class.php	2005-11-27 18:34:14 UTC (rev 2651)
+++ plog/trunk/class/gallery/dao/galleryresources.class.php	2005-11-27 18:54:24 UTC (rev 2652)
@@ -201,7 +201,7 @@
 			
 			// check if we need to do any paging
 			if( $page > DEFAULT_PAGING_ENABLED && $itemsPerPage > DEFAULT_ITEMS_PER_PAGE )
-				$result = array_slice( $result, $page, $itemsPerPage );
+				$result = array_slice( $result, $page-1, $itemsPerPage );
 
             return $result;
         }




More information about the pLog-svn mailing list