Merge pull request #12438 from nextcloud/version/noid/12.0.13RC1

12.0.13 RC 1
This commit is contained in:
Morris Jobke 2018-11-15 15:23:15 +01:00 committed by GitHub
commit 83fe653995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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' => [