id and name attribute value mismatch in map tag.
<map id="cornermap1" name="cornermap-1">
file corner.module line 277 $html .= '<map id="cornermap'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";
$html .= '<map id="cornermap'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";
putting a hypen after the id cornermap solves the issue $html .= '<map id="cornermap-'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";
$html .= '<map id="cornermap-'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";
Sorry it took so long - should be fixed now.
Automatically closed -- issue fixed for 2 weeks with no activity.
Comments
Comment #1
zolikonta commentedfile corner.module line 277
$html .= '<map id="cornermap'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";putting a hypen after the id cornermap solves the issue
$html .= '<map id="cornermap-'. $corner->cid .'" name="cornermap-'. $corner->cid .'">'."\n";Comment #2
kirie commentedSorry it took so long - should be fixed now.