Closed (fixed)
Project:
Active Tags
Version:
6.x-1.5
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
17 Aug 2009 at 17:16 UTC
Updated:
19 Sep 2009 at 13:30 UTC
I've found extra #(id) tag in code which, i believe, not needed.
Active_tags.module v 1.5 line 63:
$settings[] = "#edit-taxonomy-tags-$id-wrapper";
After render it looks like:
<div id="#edit-taxonomy-tags-1-wrapper" class="some-class">
...
I guess you need to delete '#' from code.
Thanks.
Comments
Comment #1
Kane commentedHmm, not saved.
Again, after render it looks like:
Looks like this module dependent on whether there is # tag or not.
Comment #2
dragonwize commentedI am aware of this. It is from before I started with this module and I have left it as such for backwards capability until I have time to do more research into its history.
Comment #3
dragonwize commentedAfter research it appears that it was used like this to allow pass through selectors. I've implemented a solution that just removes it from the id attribute as needed.