diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-18 17:14:38 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-18 17:14:38 +0100 |
commit | 6b9ae27b90ee5649fcab2417ebaf14e87559756e (patch) | |
tree | a5ce01aee8c99e2d4a37c1f090c7a1d82443af41 /core/ajax/update.php | |
parent | f6c3667efa32d0fa24307b3acc3a239081bf6410 (diff) | |
download | nextcloud-server-6b9ae27b90ee5649fcab2417ebaf14e87559756e.tar.gz nextcloud-server-6b9ae27b90ee5649fcab2417ebaf14e87559756e.zip |
drop file cache migration OC5 -> OC6
Diffstat (limited to 'core/ajax/update.php')
-rw-r--r-- | core/ajax/update.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index d6af84e95b1..2a0cbb2036d 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -16,15 +16,6 @@ if (OC::checkUpgrade(false)) { $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Updated database')); }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('Updating filecache, this may take really long...')); - }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('Updated filecache')); - }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('... %d%% done ...', array('percent' => $out))); - }); $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) { $eventSource->send('failure', $message); $eventSource->close(); |