summaryrefslogtreecommitdiffstats
path: root/lib/private/ocsclient.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-10-23 23:27:15 +0200
committerLukas Reschke <lukas@owncloud.com>2014-10-24 12:27:53 +0200
commitd060180140923ac054b252f0cbd821063a53f5b7 (patch)
tree59d53bb16be35960f493709d8409a75bc79be47e /lib/private/ocsclient.php
parent9739a25547e5f8f7500b0a962780cb9267b47cd1 (diff)
downloadnextcloud-server-d060180140923ac054b252f0cbd821063a53f5b7.tar.gz
nextcloud-server-d060180140923ac054b252f0cbd821063a53f5b7.zip
Use function outside of loop
Otherwise the function is executed n times which is a lot of overhead
Diffstat (limited to 'lib/private/ocsclient.php')
-rw-r--r--lib/private/ocsclient.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php
index 8ceb43f4c1f..351027d8018 100644
--- a/lib/private/ocsclient.php
+++ b/lib/private/ocsclient.php
@@ -129,8 +129,9 @@ class OC_OCSClient{
$data = simplexml_load_string($xml);
libxml_disable_entity_loader($loadEntities);
- $tmp=$data->data->content;
- for($i = 0; $i < count($tmp); $i++) {
+ $tmp = $data->data->content;
+ $tmpCount = count($tmp);
+ for($i = 0; $i < $tmpCount; $i++) {
$app=array();
$app['id']=(string)$tmp[$i]->id;
$app['name']=(string)$tmp[$i]->name;