diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-12-22 10:20:22 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-01-05 14:30:25 +0100 |
commit | 5d01004368c4b1a3898831955fac58a86184af5a (patch) | |
tree | 16a2dc4ab3a09db870ce07e038f0aeef7cf68ce8 | |
parent | 7baa4ea1a48df31139fe6d36169cbc690208db62 (diff) | |
download | nextcloud-server-5d01004368c4b1a3898831955fac58a86184af5a.tar.gz nextcloud-server-5d01004368c4b1a3898831955fac58a86184af5a.zip |
Adjust version to Nextcloud
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
-rw-r--r-- | lib/private/Repair/RepairInvalidShares.php | 2 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Repair/RepairInvalidShares.php b/lib/private/Repair/RepairInvalidShares.php index 05267be72cf..e0f66049784 100644 --- a/lib/private/Repair/RepairInvalidShares.php +++ b/lib/private/Repair/RepairInvalidShares.php @@ -167,7 +167,7 @@ class RepairInvalidShares implements IRepairStep { // this situation was only possible before 9.1 $this->addShareLinkDeletePermission($out); } - if (version_compare($ocVersionFromBeforeUpdate, '9.2.0.2', '<')) { + if (version_compare($ocVersionFromBeforeUpdate, '12.0.0.11', '<')) { $this->adjustFileSharePermissions($out); } diff --git a/version.php b/version.php index 6db26c8c66c..90f4e65055a 100644 --- a/version.php +++ b/version.php @@ -26,7 +26,7 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(12, 0, 0, 11); +$OC_Version = array(12, 0, 0, 12); // The human readable string $OC_VersionString = '12.0 alpha'; |