This commit is contained in:
friendica 2012-02-09 22:44:59 -08:00
parent ffe7d8b1e9
commit 2f2e331c33
1 changed files with 21 additions and 17 deletions

View File

@ -57,11 +57,14 @@ function reload_plugins() {
foreach($parr as $pl) {
$pl = trim($pl);
$t = filemtime('addon/' . $pl . '/' . $pl . '.php');
$fname = 'addon/' . $pl . '/' . $pl . '.php';
if(file_exists($fname)) {
$t = @filemtime($fname);
foreach($installed as $i) {
if(($i['name'] == $pl) && ($i['timestamp'] != $t)) {
logger('Reloading plugin: ' . $i['name']);
@include_once('addon/' . $pl . '/' . $pl . '.php');
@include_once($fname);
if(function_exists($pl . '_uninstall')) {
$func = $pl . '_uninstall';
@ -80,6 +83,7 @@ function reload_plugins() {
}
}
}
}
}}