This code is bugging the heck out of me. It is found in the file
include/inc_front/content.article.inc.php on
line 86:
Code: Select all
$content["main"] .= "<a name=\"jump".$row["article_id"]."\"></a>";
I was trying to make an article that would be exactly 450 pixels high. So I created a new article with the article title hidden (by checking the "hide" checkbox) and added an HTML content part with the sole contents of:
Unfortunately when I viewed the source for this page, I found that the HTML inserted in the place of the {CONTENT} tag was as follows:
Code: Select all
<a name="jump3"></a><br /><img src="img/leer.gif" border="0" width="1" height="450" alt="" />
...this make the article a height of 450 pixels plus an extra line break (not to mention a mysteriously empty anchor tag). Why is this HTML still being added to the beginning of the article. In fact a better question would be...
"What is the purpose of this empty anchor at all?"