I suggest to remove the link from there because it won't ever work
Quote:
Originally Posted by Tralala
Actually, this works for me everywhere, except the QuickLinks pulldown in the standard vBulletin skin. I select the "Mark Forums Read" menu option, confirm the dialog that pops up, then nothing happens; no page refresh like I am used to.
(Ironically enough it works fine in my custom skin, in the QuickLinks pulldown, and all the other spots.)
Any clues? Here's the code:
Before:
Code:
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
After:
Code:
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow" onclick="return mark_all_read()">$vbphrase[mark_forums_read]</a></td></tr>
|