Skip to content

Commit

Permalink
add more precise version to also repair git master instances
Browse files Browse the repository at this point in the history
  • Loading branch information
MorrisJobke committed Sep 29, 2015
1 parent 86ce671 commit 6aed476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/repair/repairinvalidshares.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private function removeExpirationDateFromNonLinkShares() {

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();
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 6aed476

Please sign in to comment.