Merge pull request #3424 from nextcloud/fix-upgrade-path

Fix return value of getAllowedPreviousVersions()
This commit is contained in:
Björn Schießle 2017-02-10 11:48:30 +01:00 committed by GitHub
commit b4ade76665
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class Updater extends BasicEmitter {
// this should really be a JSON file
require \OC::$SERVERROOT . '/version.php';
/** @var array $OC_VersionCanBeUpgradedFrom */
return implode('.', $OC_VersionCanBeUpgradedFrom);
return $OC_VersionCanBeUpgradedFrom;
}
/**