summaryrefslogtreecommitdiffstats
path: root/lib/appconfig.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-04-08 17:36:12 +0200
committerJakob Sack <kde@jakobsack.de>2011-04-08 17:36:12 +0200
commit7c8ae42c6f39b38e2910780944910b5cf9d360c1 (patch)
tree72a006e2cecba12a29e54e560909a70b526b4aee /lib/appconfig.php
parentf66d3ab208e056bac699fef17c6e9ad6257f368b (diff)
downloadnextcloud-server-7c8ae42c6f39b38e2910780944910b5cf9d360c1.tar.gz
nextcloud-server-7c8ae42c6f39b38e2910780944910b5cf9d360c1.zip
Fixed some small bugs
Diffstat (limited to 'lib/appconfig.php')
-rw-r--r--lib/appconfig.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/appconfig.php b/lib/appconfig.php
index 3c37a9d77d5..81e5717f647 100644
--- a/lib/appconfig.php
+++ b/lib/appconfig.php
@@ -51,7 +51,7 @@ class OC_APPCONFIG{
$result = $query->execute();
$apps = array();
- while( $result->fetchRow()){
+ while( $row = $result->fetchRow()){
$apps[] = $row["appid"];
}
@@ -72,7 +72,7 @@ class OC_APPCONFIG{
$result = $query->execute( $app );
$keys = array();
- while( $result->fetchRow()){
+ while( $row = $result->fetchRow()){
$keys[] = $row["key"];
}