Merge pull request #12438 from nextcloud/version/noid/12.0.13RC1
12.0.13 RC 1
This commit is contained in:
commit
83fe653995
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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' => [
|
||||
|
|
Loading…
Reference in New Issue