When I lok in my log files I see hundreds of:
PHP Notice: Array to string conversion in /home/httpd/.../....php on line 977
Line 977 is:
$options = explode(",", $lgs);
Is there any way how to get rid of these php notices and why they appear?
Thanks.
That means that $lgs was an array, but somehow was used in explode(), and thus was cast to a string.