Fix return value of getAllowedPreviousVersions()

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2017-02-09 23:24:24 -06:00 committed by Joas Schilling
parent e8bbef462f
commit 9a526a2eb8
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,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;
}
/**