Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-11-15 17:23:15 +0300
committerGitHub <noreply@github.com>2018-11-15 17:23:15 +0300
commit83fe653995be9647716aeba27d38ff49148468ee (patch)
tree2c399fe981687af72621e298787885afa06fe735
parentbc303454f0a9400e200e0ffd7460c226441341eb (diff)
parentf61681cbd748392ed6bc33a32e188f83c568573e (diff)
Merge pull request #12438 from nextcloud/version/noid/12.0.13RC1v12.0.13RC1
12.0.13 RC 1
-rw-r--r--lib/composer/composer/ClassLoader.php2
-rw-r--r--version.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/composer/composer/ClassLoader.php b/lib/composer/composer/ClassLoader.php
index 95f7e0978ba..fce8549f078 100644
--- a/lib/composer/composer/ClassLoader.php
+++ b/lib/composer/composer/ClassLoader.php
@@ -279,7 +279,7 @@ class ClassLoader
*/
public function setApcuPrefix($apcuPrefix)
{
- $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
+ $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
diff --git a/version.php b/version.php
index 734c08f73c4..8f274e36fd1 100644
--- a/version.php
+++ b/version.php
@@ -26,10 +26,10 @@
// 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, 12, 2);
+$OC_Version = array(12, 0, 13, 0);
// The human readable string
-$OC_VersionString = '12.0.12';
+$OC_VersionString = '12.0.13 RC 1';
$OC_VersionCanBeUpgradedFrom = [
'nextcloud' => [