Skip to content
Snippets Groups Projects
Commit 74c7890f authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Fix undefined index license in Apps

parent 98ca6c4a
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,7 @@ class OC_OCSClient{
$app['type']=(string)$tmp[$i]->typeid;
$app['typename']=(string)$tmp[$i]->typename;
$app['personid']=(string)$tmp[$i]->personid;
$app['license']=(string)$tmp[$i]->license;
$app['detailpage']=(string)$tmp[$i]->detailpage;
$app['preview']=(string)$tmp[$i]->smallpreviewpic1;
$app['changed']=strtotime($tmp[$i]->changed);
......
......@@ -57,7 +57,7 @@ if(is_array($catagoryNames)){
'active'=>false,
'description'=>$app['description'],
'author'=>$app['personid'],
'licence'=>$app['license'],
'license'=>$app['license'],
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment