diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2021-02-03 21:34:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 21:34:52 +0100 |
commit | a7cf6dbdb07222cefcc7fe218be88b8fab0f8212 (patch) | |
tree | 2433f9004598fc3a271dbdb45a299f24c25dd1d8 | |
parent | 9c5c865f45f4e0c82820e150e386575313580df1 (diff) | |
parent | aefcc03b78289a197c2c3b5c4f2f694f3812b7f7 (diff) | |
download | nextcloud-server-a7cf6dbdb07222cefcc7fe218be88b8fab0f8212.tar.gz nextcloud-server-a7cf6dbdb07222cefcc7fe218be88b8fab0f8212.zip |
Merge pull request #25468 from nextcloud/fix/nextcloud-upgrade-22
Allow upgrades in Nextcloud 22 / Disallow upgrade from 20
-rw-r--r-- | version.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php index 7faeecfb30c..7b5cbe38ffb 100644 --- a/version.php +++ b/version.php @@ -37,8 +37,8 @@ $OC_VersionString = '22.0.0 alpha'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ - '20.0' => true, '21.0' => true, + '22.0' => true, ], 'owncloud' => [ '10.5' => true, |