update imagesloaded to version 4.1.4 via composer

This commit is contained in:
Mario
2018-11-25 10:09:26 +01:00
parent bc9f2922e0
commit c667572d3e
40 changed files with 1871 additions and 99 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;
}
/**