I don't know if anyone has noticed, but when you are logged in as a member or logged out as a guest, on any yabbse forum, the boardindex changes... It's hard to explain, here's some pictures - take a look at the bottom of the cell which says "mark as read" it dissappears for guests...
Member:
Guest:
Here is the fix for it, this makes the bottom cell appear, and the "mark as read" button to appear only to members.
Open boardindex.php find lines 308-322
if ($username != 'Guest' )
{
echo '
<tr>
<td class="titlebg" colspan="6" align="center">
<table cellpadding="0" border="0" cellspacing="0" width="100%">
<tr>
<td align="left">
' . $img['new_some'] . '
' . $img['new_none'] . '</td>
<td align="right">
<font size="1"> ';
if ($showmarkread == 1)
echo " <a href=\"$scripturl?action=markallasread\">$img[markallread]</a>";
echo '
replace with:
{
echo '
<tr>
<td class="titlebg" colspan="6" align="center">
<table cellpadding="0" border="0" cellspacing="0" width="100%">
<tr>
<td align="left">
' . $img['new_some'] . '
' . $img['new_none'] . '</td>
<td align="right">
<font size="1"> ';
if ($showmarkread == 1) if ($username != 'Guest' )
echo " <a href=\"$scripturl?action=markallasread\">$img[markallread]</a>";