mirror of
https://github.com/friendica/friendica
synced 2025-04-27 17:10:10 +00:00
post preview to loozah
This commit is contained in:
parent
375cb82124
commit
cf7008e575
6 changed files with 28 additions and 3 deletions
|
@ -19,7 +19,7 @@ function uninstall_plugin($plugin){
|
|||
if (! function_exists('install_plugin')){
|
||||
function install_plugin($plugin){
|
||||
logger("Addons: installing " . $plugin);
|
||||
$t = filemtime('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
$t = @filemtime('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
@include_once('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
if(function_exists($plugin . '_install')) {
|
||||
$func = $plugin . '_install';
|
||||
|
@ -33,6 +33,10 @@ function install_plugin($plugin){
|
|||
$plugin_admin
|
||||
);
|
||||
}
|
||||
else {
|
||||
logger("Addons: FAILED installing " . $plugin);
|
||||
}
|
||||
|
||||
}}
|
||||
|
||||
// reload all updated plugins
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue