fix error in check if app is installed

This commit is contained in:
Robin Appelman 2012-08-18 23:15:38 +02:00
parent 5962469892
commit eb42148210

View file

@ -35,7 +35,7 @@ if(is_array($catagoryNames)){
// show only external apps that aren't enabled yet
$local=false;
foreach($enabledApps as $a){
if($a['name'] == $app['name']) {
if($a == $app['name']) {
$local=true;
}
}