Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix incorrect repoId after array_merge function.
Browse files Browse the repository at this point in the history
  • Loading branch information
c12simple committed Sep 29, 2016
1 parent fada3e7 commit 929c2b8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -236,7 +236,7 @@ public static function listRepositoriesWithCriteria($criteria, &$count)
$statics = self::filterRepositoryListWithCriteria($statics, $criteria);
$dyna = ConfService::getConfStorageImpl()->listRepositoriesWithCriteria($criteria, $count);
$count += count($statics);
return array_merge($statics, $dyna);
return $statics + $dyna;

}

Expand Down

0 comments on commit 929c2b8

Please sign in to comment.