Message Text |
Hello, in category templates / main index, i had previously (with 3.3.8) changed my template with a <br> after {CATNAME} (it was working and i found <br> in the code source of the final page) :
<table align="center" cellpadding="5" cellspacing="10">
<!-- BEGIN CATSBODY -->
...
<!-- BEGIN SUBSUB -->
<a href="index.php?action=displaycat&catid={CATID}" class="categoryname">{CATNAME}</a><br>
<!-- END SUBSUB -->
...
<!-- END CATSBODY -->
</table>
doing the same change :
<a href="index.php?action=displaycat&catid={CATID}">{CATNAME}</a><br>
instead of :
<a href="index.php?action=displaycat&catid={CATID}">{CATNAME}</a>,
i have absolutely no change and i don't find <br> in the code source.
Why do i post here ?
Because i think it's a bug ! :
i also remark that analysing the source of the page i don't find anymore "<!-- BEGIN SUBSUB -->" i had previously with 3.3.8
From where could it come from ?
thank you |