add more precise version to also repair git master instances

This commit is contained in:
Morris Jobke 2015-09-29 10:27:01 +02:00 committed by Joas Schilling
parent 6e104bc933
commit cc0812332c
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ class RepairInvalidShares extends BasicEmitter implements \OC\RepairStep {
public function run() {
$ocVersionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0');
if (version_compare($ocVersionFromBeforeUpdate, '8.2.0', '<')) {
if (version_compare($ocVersionFromBeforeUpdate, '8.2.0.7', '<')) {
// this situation was only possible before 8.2
$this->removeExpirationDateFromNonLinkShares();
}

View File

@ -23,7 +23,7 @@
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
$OC_Version = array(8, 2, 0, 6);
$OC_Version = array(8, 2, 0, 7);
// The human readable string
$OC_VersionString = '8.2 beta1';