Browse Source

Merge pull request #24132 from owncloud/fix-web-updater

Fix web updater
tags/v9.1.0beta1
Thomas Müller 8 years ago
parent
commit
7e2a1656f9
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      core/ajax/update.php

+ 3
- 3
core/ajax/update.php View File

@@ -37,13 +37,13 @@ $eventSource = \OC::$server->createEventSource();
// need to send an initial message to force-init the event source,
// which will then trigger its own CSRF check and produces its own CSRF error
// message
//$eventSource->send('success', (string)$l->t('Preparing update'));
$eventSource->send('success', (string)$l->t('Preparing update'));

if (OC::checkUpgrade(false)) {

$config = \OC::$server->getSystemConfig();
if ($config->getValue('upgrade.disable-web', true)) {
$eventSource->send('failure', (string)$l->t('Updates need to be installed. Please use the command line updater.'));
if ($config->getValue('upgrade.disable-web', false)) {
$eventSource->send('failure', (string)$l->t('Please use the command line updater because automatic updating is disabled in the config.php.'));
$eventSource->close();
exit();
}

Loading…
Cancel
Save