mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
fix an other PHP5.3 deprecated error
This commit is contained in:
parent
cce85a5340
commit
453945c9c9
@ -693,8 +693,8 @@ function php_ini_check($name,$args)
|
||||
break;
|
||||
case 'contain':
|
||||
$check = lang('contain');
|
||||
$sep = $is_windows ? '[; ]+' : '[: ]+';
|
||||
$result = in_array($args['value'],split($sep,$ini_value));
|
||||
$sep = $is_windows ? '/[; ]+/' : '/[: ]+/';
|
||||
$result = in_array($args['value'],preg_split($sep,$ini_value));
|
||||
break;
|
||||
case '=':
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user