From ca7f6dec556c93f2d68ed02d40a64059327a9fef Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 27 Oct 2016 20:18:54 +0200 Subject: Make non-static Signed-off-by: Lukas Reschke --- lib/private/Installer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/private') diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 02dbd670a0a..ab97859d62a 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -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); -- cgit v1.2.3