DEV Community

Discussion on: Fixes for Koken problems in 2020

Collapse
 
accudio profile image
Alistair Shepherd

Hi Mohamed,
Replace this line:

$args = (func_num_args() > 1) ? array_splice(func_get_args(), 1) : null;
Enter fullscreen mode Exit fullscreen mode

with this:

$func_args = func_get_args();
$args = (func_num_args() > 1) ? array_splice($func_args, 1) : null;
Enter fullscreen mode Exit fullscreen mode

Hope that helps!