The "letter" anchors that are generated for the alphabar are not being output correctly. I am getting the following problem...
For the "A" group, each term has this code before it:
<a id="letterb"></a>
<a id="lettera"></a>
<a id="termXX"></a>
Likewise, for each of the following letters, the next letter's anchor is listed, then the current letter's anchor, then the term anchor. For *every* term. The letter anchor should occur *once* and only once, for the first term of a given letter.
Comments
Comment #1
slower commentedThe problem is on line 316 of glossary.module, where we are looping through and outputting the terms.:
It's printing anchors for the next letter and the current term's first letter. It should only print an anchor for the current letter. To achieve this, you can change line 316 to:
Comment #2
slower commentedComment #3
Frodo Looijaard commentedFixed by reimplementing the alphabet bar (issue 13083).
Thanks for your feedback and help!
Frodo
Comment #4
(not verified) commented