mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Correct off-by-1 error in app list
This commit is contained in:
parent
527592be81
commit
79bae15b8d
@ -88,7 +88,7 @@
|
||||
$applications = array();
|
||||
while(list($app,$data) = @each($apps))
|
||||
{
|
||||
if($i >= $start && $i<= $limit)
|
||||
if($i >= $start && $i< $limit)
|
||||
{
|
||||
$applications[$app] = $data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user