ignore removed plugins

This commit is contained in:
friendica 2012-04-06 05:21:42 -07:00
parent 533e215a96
commit ecabe1d505
1 changed files with 9 additions and 2 deletions

View File

@ -17,7 +17,12 @@ function uninstall_plugin($plugin){
}}
if (! function_exists('install_plugin')){
function install_plugin($plugin){
function install_plugin($plugin) {
// silently fail if plugin was removed
if(! file_exists('addon/' . $plugin . '/' . $plugin . '.php'))
return false;
logger("Addons: installing " . $plugin);
$t = @filemtime('addon/' . $plugin . '/' . $plugin . '.php');
@include_once('addon/' . $plugin . '/' . $plugin . '.php');
@ -32,9 +37,11 @@ function install_plugin($plugin){
intval($t),
$plugin_admin
);
return true;
}
else {
// logger("Addons: FAILED installing " . $plugin);
logger("Addons: FAILED installing " . $plugin);
return false;
}
}}