Merge pull request #1577 from owncloud/typo_catagory

Typo
This commit is contained in:
Lukas Reschke 2013-02-10 02:31:34 -08:00
commit 01fabd6c65
2 changed files with 6 additions and 6 deletions

View File

@ -709,10 +709,10 @@ class OC_App{
* @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description * @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description
*/ */
public static function getAppstoreApps( $filter = 'approved' ) { public static function getAppstoreApps( $filter = 'approved' ) {
$catagoryNames = OC_OCSClient::getCategories(); $categoryNames = OC_OCSClient::getCategories();
if ( is_array( $catagoryNames ) ) { if ( is_array( $categoryNames ) ) {
// Check that categories of apps were retrieved correctly // Check that categories of apps were retrieved correctly
if ( ! $categories = array_keys( $catagoryNames ) ) { if ( ! $categories = array_keys( $categoryNames ) ) {
return false; return false;
} }

View File

@ -23,9 +23,9 @@ if(is_null($enabledApps)) {
$apps=array(); $apps=array();
// apps from external repo via OCS // apps from external repo via OCS
$catagoryNames=OC_OCSClient::getCategories(); $categoryNames=OC_OCSClient::getCategories();
if(is_array($catagoryNames)) { if(is_array($categoryNames)) {
$categories=array_keys($catagoryNames); $categories=array_keys($categoryNames);
$page=0; $page=0;
$filter='approved'; $filter='approved';
$externalApps=OC_OCSClient::getApplications($categories, $page, $filter); $externalApps=OC_OCSClient::getApplications($categories, $page, $filter);