diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-04-08 17:36:12 +0200 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-04-08 17:36:12 +0200 |
commit | 7c8ae42c6f39b38e2910780944910b5cf9d360c1 (patch) | |
tree | 72a006e2cecba12a29e54e560909a70b526b4aee /lib/appconfig.php | |
parent | f66d3ab208e056bac699fef17c6e9ad6257f368b (diff) | |
download | nextcloud-server-7c8ae42c6f39b38e2910780944910b5cf9d360c1.tar.gz nextcloud-server-7c8ae42c6f39b38e2910780944910b5cf9d360c1.zip |
Fixed some small bugs
Diffstat (limited to 'lib/appconfig.php')
-rw-r--r-- | lib/appconfig.php | 4 |
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"]; } |