X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fplugin.php;h=f4861536c10726e6ff8b857d73872e49b61c4925;hb=cdebdc777e38506e673864377ce17a5af91dd8a1;hp=9002c7bce40577c0e4b982a5776313477bc7b793;hpb=916b2e7438443ef7d97971cdacee234efc3f3ccf;p=friendica.git diff --git a/include/plugin.php b/include/plugin.php index 9002c7bce4..f4861536c1 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -197,14 +197,14 @@ function plugin_is_app($name) { return true; } } - + return false; }} /* * parse plugin comment in search of plugin infos. * like - * + * * * Name: Plugin * * Description: A plugin which plugs in * * Version: 1.2.3 @@ -222,7 +222,8 @@ function get_plugin_info($plugin){ 'name' => $plugin, 'description' => "", 'author' => array(), - 'version' => "" + 'version' => "", + 'status' => "" ); if (!is_file("addon/$plugin/$plugin.php")) return $info; @@ -328,10 +329,10 @@ function get_theme_info($theme){ $info[$k]=$v; } } - + } } - + } return $info; }} @@ -351,7 +352,7 @@ function get_theme_screenshot($theme) { if (! function_exists('uninstall_theme')){ function uninstall_theme($theme){ logger("Addons: uninstalling theme " . $theme); - + @include_once("view/theme/$theme/theme.php"); if(function_exists("{$theme}_uninstall")) { $func = "{$theme}_uninstall";