aboutsummaryrefslogtreecommitdiffstats
path: root/settings/apps.php
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-06-09 22:00:28 +0200
committerFrank Karlitschek <frank@owncloud.org>2012-06-09 22:00:28 +0200
commit3947aa3ef7320805545e5339c605cf8cb81475dd (patch)
treefba14185cff8b1d146b306d3ca41578e2382552b /settings/apps.php
parent995f9c7348fcc6dd25a95f81030e7d3b6f04d6c3 (diff)
downloadnextcloud-server-3947aa3ef7320805545e5339c605cf8cb81475dd.tar.gz
nextcloud-server-3947aa3ef7320805545e5339c605cf8cb81475dd.zip
apps paging is not yet implemented. increase pagesize to 100 as a quickfix
Diffstat (limited to 'settings/apps.php')
-rw-r--r--settings/apps.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/apps.php b/settings/apps.php
index 1a829d371a6..7908e6cc18b 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -63,7 +63,8 @@ usort($apps, 'app_sort');
$catagoryNames=OC_OCSClient::getCategories();
if(is_array($catagoryNames)){
$categories=array_keys($catagoryNames);
- $externalApps=OC_OCSClient::getApplications($categories);
+ $page=0;
+ $externalApps=OC_OCSClient::getApplications($categories,$page);
foreach($externalApps as $app){
// show only external apps that are not exist yet
$local=false;