From: Alexander Ebert Date: Thu, 31 Jan 2013 23:24:31 +0000 (+0100) Subject: Fixed installation of an additional application X-Git-Tag: 2.0.0_Beta_1~521 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bb152db65a5ad280e34e93607779a8019be87d74;p=GitHub%2FWoltLab%2FWCF.git Fixed installation of an additional application Fixes #1121 --- diff --git a/wcfsetup/install/files/lib/system/application/ApplicationHandler.class.php b/wcfsetup/install/files/lib/system/application/ApplicationHandler.class.php index 458df83eac..38ba521163 100644 --- a/wcfsetup/install/files/lib/system/application/ApplicationHandler.class.php +++ b/wcfsetup/install/files/lib/system/application/ApplicationHandler.class.php @@ -165,16 +165,6 @@ class ApplicationHandler extends SingletonFactory { return false; } - /** - * Reloads cache during setup. - * - * @todo Caches should be disabled within setup, this is just a work-around! - */ - public function reloadCache() { - ApplicationEditor::resetCache(); - $this->init(); - } - /** * Rebuilds cookie domain/path for all applications. */ diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index eaa305db6d..daff3c45a9 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -310,7 +310,6 @@ class PackageInstallationDispatcher { 'cookiePath' => $path, 'packageID' => $package->packageID )); - ApplicationHandler::getInstance()->reloadCache(); } }