id and name attribute value mismatch in map tag.

<map id="cornermap1" name="cornermap-1">

Comments

zolikonta’s picture

file 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";

kirie’s picture

Status: Active » Fixed

Sorry it took so long - should be fixed now.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.