Skip to content
Snippets Groups Projects
Commit fdbe0c97 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

don´t claim that already downloaded 3rd party apps are internal apps

parent 0df376d4
Branches
No related tags found
No related merge requests found
......@@ -39,8 +39,13 @@ foreach($registeredApps as $app){
$info=OC_App::getAppInfo($app);
$active=(OC_Appconfig::getValue($app,'enabled','no')=='yes')?true:false;
$info['active']=$active;
if(isset($info['shipped']) and ($info['shipped']=='true')) {
$info['internal']=true;
$info['internallabel']='Internal App';
}else{
$info['internal']=false;
$info['internallabel']='3rd Party App';
}
$info['preview']='trans.png';
$apps[]=$info;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment