diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-05-19 10:27:53 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-05-19 10:56:04 +0200 |
commit | 064f5204cc365bcf8c12ef34e6fde92175c9d6fa (patch) | |
tree | 1c20230351041b74bc131ab05826ef0cdcb6c97e /core/ajax | |
parent | aae9274210ad80e3c313d55999684c03f6e06b2c (diff) | |
download | nextcloud-server-064f5204cc365bcf8c12ef34e6fde92175c9d6fa.tar.gz nextcloud-server-064f5204cc365bcf8c12ef34e6fde92175c9d6fa.zip |
Persist the state of the maintenance after an upgrade
* if maintenance mode was enabled before an upgrade
it will be enabled afterwards too
* fixes #16429
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/update.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index 22133f9774c..6a29b5b1c33 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -44,12 +44,15 @@ if (OC::checkUpgrade(false)) { $incompatibleApps = []; $disabledThirdPartyApps = []; - $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource, $l) { + $updater->listen('\OC\Updater', 'maintenanceEnabled', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Turned on maintenance mode')); }); - $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($eventSource, $l) { + $updater->listen('\OC\Updater', 'maintenanceDisabled', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Turned off maintenance mode')); }); + $updater->listen('\OC\Updater', 'maintenanceActive', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Maintenance mode is kept active')); + }); $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Updated database')); }); |