Make non-static

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2016-10-27 20:18:54 +02:00
parent 8d83e239f3
commit ca7f6dec55
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 3 additions and 2 deletions

View File

@ -543,7 +543,7 @@ class Installer {
/**
* Removes an app
* @param string $name name of the application to remove
* @param string $appId ID of the application to remove
* @return boolean
*
*
@ -555,8 +555,9 @@ class Installer {
* this has to be done by the function oc_app_uninstall().
*/
public static function removeApp($appId) {
$installer = new Installer();
if(Installer::isDownloaded( $appId )) {
if($installer->isDownloaded( $appId )) {
$appDir=OC_App::getInstallPath() . '/' . $appId;
OC_Helper::rmdirr($appDir);