summaryrefslogtreecommitdiffstats
path: root/lib/ocsclient.php
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-10-08 15:49:48 +0200
committerFrank Karlitschek <frank@owncloud.org>2012-10-08 15:49:48 +0200
commitc701bed2e3572b3b5d5d192cbe3f801d016c881d (patch)
treeb5b5530ee9ced384a768f36a79663d6230445cf2 /lib/ocsclient.php
parent3affeb5bd77715c84c70230d744de8d0f577a378 (diff)
downloadnextcloud-server-c701bed2e3572b3b5d5d192cbe3f801d016c881d.tar.gz
nextcloud-server-c701bed2e3572b3b5d5d192cbe3f801d016c881d.zip
fix a lot of small layout bugs and make the apps page overall prettier plus add ratings finally
Diffstat (limited to 'lib/ocsclient.php')
-rw-r--r--lib/ocsclient.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ocsclient.php b/lib/ocsclient.php
index fc2095f5c15..c5c4357313b 100644
--- a/lib/ocsclient.php
+++ b/lib/ocsclient.php
@@ -140,6 +140,7 @@ class OC_OCSClient{
$app['preview']=(string)$tmp[$i]->smallpreviewpic1;
$app['changed']=strtotime($tmp[$i]->changed);
$app['description']=(string)$tmp[$i]->description;
+ $app['score']=(string)$tmp[$i]->score;
$apps[]=$app;
}
@@ -188,6 +189,7 @@ class OC_OCSClient{
$app['changed']=strtotime($tmp->changed);
$app['description']=$tmp->description;
$app['detailpage']=$tmp->detailpage;
+ $app['score']=$tmp->score;
return $app;
}