Quote:
Originally Posted by Phaedrus
Okay, if you are using the Blog, even the newest version, there is one comments link that breaks when using this, as well as 2.2.2...
To fix it:
In "blog_show_entry" template find:
Code:
<span class="shade"><a href="#comments" class="shade">$vbphrase[comments]</a></span> <span id="commentcount1">$bloginfo[comments_visible]</span>
Replace with:
Code:
<span class="shade"><a href="blog.php?b=$blog[blogid]#comments" class="shade">$vbphrase[comments]</a></span> <span id="commentcount1">$bloginfo[comments_visible]</span>
|
Installed and mostly working. I am finding numerous links all over the site that are broken in a similar manner. All with the #arg type URL.
For example, in showthread.php, this snippet of template is used:
Code:
<a href="$firstunread"><strong>$vbphrase[view_first_unread]</strong></a>
$firstunread is some string like #10141, and mouse over the link shows:
http://sportstwo.com/#10141
instead of
http://sportstwo.com/showthread.php?...tle.html#10141
I'm not using the mod_rewrite means of rewriting.
Any <a href=#something> is rewritten wrong! Even on vbAdvanced custom pages.
Please advise.