Subject: Where is f.desc generated?
I'm trying to create a minimalist template, and I'm stripping out most of the graphics and as much CSS as I can. I've run into a problem though, with f.desc. I'm trying to make it a hover-to-read feature, rather than a separate line, in forumlist.html.
What I want is this:
But while f.name is a plaintext chunk, f.desc includes extra, unwanted code. Instead of this:
I get this:
As you can see, there's a <span class="abbc"> added to the forum title, which completely breaks the page design. Why is this the only string (so far) lucky enough to have a <span> element added? I can't find the file that creates this string so I can stop it from happening...
Pointers appreciated. =)
What I want is this:
<a href="{$f.link}" title="{$f.desc}">{$f.name}</a>
But while f.name is a plaintext chunk, f.desc includes extra, unwanted code. Instead of this:
<a href="forum/33" title="FORUMTITLE">Forum Name</a>
I get this:
<a href="forum/33" title="<span class="abbc">FORUMTITLE</span>">Forum Name</a>
As you can see, there's a <span class="abbc"> added to the forum title, which completely breaks the page design. Why is this the only string (so far) lucky enough to have a <span> element added? I can't find the file that creates this string so I can stop it from happening...
Pointers appreciated. =)


NFG
Show profile
Link to this post