Another one
in class-frontend.php, line 106, replace :
return $multi * eucookie_option('lengthnum');
by
return $multi * intval(eucookie_option('lengthnum'));
Hey,
Got also this message cause of an uninitialized value.
To get around, on line 53 of the defaults.php file change :
$nPort = $asParts['port'];
by
$nPort = isset($asParts['port']) ? $asParts['port'] : '';