|
This was odd, there where 4 rows with the same problem.
<span class="{$Style['small']}">{$rp_phrase['recent']} <a rel="nofollow" href="{$Globals['maindir']}/search.php?when=1&whenterm=d&cat=$cat">$rp_phrase['lastday']</a>
<a rel="nofollow" href="{$Globals['maindir']}/search.php?when=1&whenterm=w&cat=$cat">$rp_phrase['last7']</a>
<a rel="nofollow" href="{$Globals['maindir']}/search.php?when=2&whenterm=w&cat=$cat">$rp_phrase['last14']</a>
<a rel="nofollow" href="{$Globals['maindir']}/search.php?cats=$cat">$rp_phrase['allimages']</a>
And after changing the following it started working again:
<span class="{$Style[small]}">{$rp_phrase[recent]} <a rel="nofollow" href="{$Globals[maindir]}/search.php?when=1&whenterm=d&cat=$cat">$rp_phrase[lastday]</a>
<a rel="nofollow" href="{$Globals[maindir]}/search.php?when=1&whenterm=w&cat=$cat">$rp_phrase[last7]</a>
<a rel="nofollow" href="{$Globals[maindir]}/search.php?when=2&whenterm=w&cat=$cat">$rp_phrase[last14]</a>
<a rel="nofollow" href="{$Globals[maindir]}/search.php?cats=$cat">$rp_phrase[allimages]</a>
So it seems like the indexhead.tmpl contains errors that might be fixed?
|