Merge pull request #9819 from owncloud/updater-setversionafterupdate
Set version AFTER a successful update
This commit is contained in:
commit
11214219f3
1 changed files with 3 additions and 2 deletions
|
@ -212,8 +212,6 @@ class Updater extends BasicEmitter {
|
|||
\OC_DB::updateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml');
|
||||
$this->emit('\OC\Updater', 'dbUpgrade');
|
||||
|
||||
// TODO: why not do this at the end ?
|
||||
\OC_Config::setValue('version', implode('.', \OC_Util::getVersion()));
|
||||
$disabledApps = \OC_App::checkAppsRequirements();
|
||||
if (!empty($disabledApps)) {
|
||||
$this->emit('\OC\Updater', 'disabledApps', array($disabledApps));
|
||||
|
@ -227,6 +225,9 @@ class Updater extends BasicEmitter {
|
|||
|
||||
//Invalidate update feed
|
||||
\OC_Appconfig::setValue('core', 'lastupdatedat', 0);
|
||||
|
||||
// only set the final version if everything went well
|
||||
\OC_Config::setValue('version', implode('.', \OC_Util::getVersion()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue