Open ghost opened 11 years ago
sottwell created Redmine issue ID 10262
The HTML Tag widget inserts an ID attribute whether one is specified or not. This can lead to multiple tags with the same ID.
core/model/modx/processors/elements/tv/renders/web/output/htmltag.class.php
Line 24 should be:
'id' => empty($params['tagid']) ? null : $domId, /* 'tv' already added to id */
sottwell created Redmine issue ID 10262
The HTML Tag widget inserts an ID attribute whether one is specified or not. This can lead to multiple tags with the same ID.
core/model/modx/processors/elements/tv/renders/web/output/htmltag.class.php
Line 24 should be:
'id' => empty($params['tagid']) ? null : $domId, /* 'tv' already added to id */