diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-15 10:47:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 10:47:51 +0100 |
commit | d70b010432292b0a6fb4ed96f504ee81fd2a352e (patch) | |
tree | 444653103035b31cbed8193389ac4aba7d949ced /apps/files_trashbin | |
parent | 4bf641ff5d0d31037b84520d1c1b3514c1deb2e3 (diff) | |
parent | aa88254f6468fb0319471a11ce2ba3235bc464a3 (diff) | |
download | nextcloud-server-d70b010432292b0a6fb4ed96f504ee81fd2a352e.tar.gz nextcloud-server-d70b010432292b0a6fb4ed96f504ee81fd2a352e.zip |
Merge pull request #12447 from nextcloud/bugfix/12446/fix-oracle-install-again
Shorten index name of calendar changes table
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/composer/composer/ClassLoader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/composer/composer/ClassLoader.php b/apps/files_trashbin/composer/composer/ClassLoader.php index 95f7e0978ba..fce8549f078 100644 --- a/apps/files_trashbin/composer/composer/ClassLoader.php +++ b/apps/files_trashbin/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; } /** |