Closed (fixed)
Project:
Corner
Version:
6.x-2.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Jul 2010 at 10:34 UTC
Updated:
14 Sep 2011 at 08:31 UTC
id and name attribute value mismatch in map tag.
<map id="cornermap1" name="cornermap-1">
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.