Correct off-by-1 error in app list

This commit is contained in:
shrykedude 2003-10-29 04:36:43 +00:00
parent 527592be81
commit 79bae15b8d

View File

@ -88,7 +88,7 @@
$applications = array(); $applications = array();
while(list($app,$data) = @each($apps)) while(list($app,$data) = @each($apps))
{ {
if($i >= $start && $i<= $limit) if($i >= $start && $i< $limit)
{ {
$applications[$app] = $data; $applications[$app] = $data;
} }