Oh, nice...
Try replacing at line 536 (in /core/app) the explode("\n", part with preg_split('~\s+~',
This SHOULD work. Untested...
Re: Log throws errors
« Reply #15, on January 31st, 2014, 12:33 AM »
Oh, nice...
Try replacing at line 536 (in /core/app) the explode("\n", part with preg_split('~\s+~',
This SHOULD work. Untested...
$_POST['reverse_proxy_ips'] = !empty($_POST['reverse_proxy_ips']) ? implode("\n", array_filter(array_map('trim', preg_split('~[\s,]+~', $_POST['reverse_proxy_ips'])))) : '';