diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-09 23:37:42 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-09 23:37:42 +0100 |
commit | bd2f8980cd65b466342ae877e8a3ee54f8672391 (patch) | |
tree | 7fd6e83a6fc0e3cdfb83a14f2c88683140beb382 /lib/app.php | |
parent | 73c44dfa1fd091f56e4cc47341fb5c38d20356bd (diff) | |
download | nextcloud-server-bd2f8980cd65b466342ae877e8a3ee54f8672391.tar.gz nextcloud-server-bd2f8980cd65b466342ae877e8a3ee54f8672391.zip |
Typo
Diffstat (limited to 'lib/app.php')
-rw-r--r-- | lib/app.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/app.php b/lib/app.php index 3a4e21e8cd1..f9daea0bab9 100644 --- a/lib/app.php +++ b/lib/app.php @@ -683,10 +683,10 @@ class OC_App{ * @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description */ public static function getAppstoreApps( $filter = 'approved' ) { - $catagoryNames = OC_OCSClient::getCategories(); - if ( is_array( $catagoryNames ) ) { + $categoryNames = OC_OCSClient::getCategories(); + if ( is_array( $categoryNames ) ) { // Check that categories of apps were retrieved correctly - if ( ! $categories = array_keys( $catagoryNames ) ) { + if ( ! $categories = array_keys( $categoryNames ) ) { return false; } |