commit
01fabd6c65
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue