Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-10 02:37:42 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-02-10 02:37:42 +0400
commitbd2f8980cd65b466342ae877e8a3ee54f8672391 (patch)
tree7fd6e83a6fc0e3cdfb83a14f2c88683140beb382 /lib/app.php
parent73c44dfa1fd091f56e4cc47341fb5c38d20356bd (diff)
Typo
Diffstat (limited to 'lib/app.php')
-rw-r--r--lib/app.php6
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;
}