MyBB Community Forums

Full Version: mark all forums read Authorization code mismatch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
This was your old index_boardstats file code:

<table border="0" cellspacing="0" cellpadding="{$theme['tablespace']}" class="tborder_fb">
<thead>
<tr>
<td class="thead_fb">
<div class="thead_left"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/style/thead_left.png" alt="" /></div>
<div style="float: left; margin-top: 10px;"><strong>{$lang->boardstats}</strong></div>
<div class="thead_right"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/style/thead_right.png" alt="" /></div>
<div class="expcolimage_fb"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img"

class="expander" alt="[-]" title="[-]" /></div>
</td>
</tr>
</thead>
<tbody style="{$collapsed['boardstats_e']}" id="boardstats_e">
{$whosonline}
{$birthdays}
{$forumstats}
<tr>
<td class="tfoot" style="text-align: right">
<span class="smalltext">
<span style="float:left;">{$lang->welcome_current_time}</span>
{$logoutlink}
<a href="misc.php?action=markread">{$lang->markread}</a> |
<a href="showteam.php">{$lang->forumteam}</a> |
<a href="stats.php">{$lang->forumstats}</a>
</span>
</td>
</tr>
</table>
</tbody>
<br />

We forgot to call this function: <a href="misc.php?action=markread">{$lang->markread}
Pages: 1 2