diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-03-05 21:13:07 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-03-05 21:13:07 -0500 |
commit | 5300d6ad552585a316107cb483bd68533116d392 (patch) | |
tree | 723e4f806f7475921e9afc2547567594c8b68e0a /core/ajax | |
parent | c1a32b50735b0a8558823d111e546865ddcba790 (diff) | |
download | nextcloud-server-5300d6ad552585a316107cb483bd68533116d392.tar.gz nextcloud-server-5300d6ad552585a316107cb483bd68533116d392.zip |
Clear the CSS and JS cache earlier to make sure update goes smoothly
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/update.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index b112cf6266b..8b20150d432 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -17,10 +17,6 @@ if (OC::checkUpgrade(false)) { } catch (Exception $exception) { $watcher->failure($exception->getMessage()); } - $minimizerCSS = new OC_Minimizer_CSS(); - $minimizerCSS->clearCache(); - $minimizerJS = new OC_Minimizer_JS(); - $minimizerJS->clearCache(); OC_Config::setValue('version', implode('.', OC_Util::getVersion())); OC_App::checkAppsRequirements(); // load all apps to also upgrade enabled apps |