]> git.mxchange.org Git - friendica.git/blobdiff - include/plugin.php
Merge pull request #1070 from annando/master
[friendica.git] / include / plugin.php
index 32962cd0c6e8882823fab6260e0f8cf0dcf8942a..f4861536c10726e6ff8b857d73872e49b61c4925 100644 (file)
@@ -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;