Forums
(@boozter)
11 years, 4 months ago
Hi, i’ve solved this bug by editing the file imagemapper.php on line 391.
Replace $id = $atts['id'];
$id = $atts['id'];
For $id = $atts;
$id = $atts;
Since $atts is not an array and the function only uses the id that gets passed to the function this will solve the issue.