Fix – PHP Warning: in_array() expects parameter 2 to be array, string given
-
Was getting the above warning in php log.
Fix: On line 875 change variable initialization.
Was:
$mw_adminimize_menu = ”;
Now:
$mw_adminimize_menu = array();Regards
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Fix – PHP Warning: in_array() expects parameter 2 to be array, string given’ is closed to new replies.