Code: Select all
'top-poster-panel'
<!-- IF TOP_POSTERS_LIST -->
<li class="" id="top-poster-panel-tab"><a name="top-poster" href="#top-poster-panel" onclick="subpanels_index('top-poster-panel'); return false;"><span>{L_TOP_POSTERS}</span></a></li>
<!-- ENDIF -->
<!-- IF TOP_POSTERS_LIST -->
<div class="itab" id="top-poster-panel" style="display:none;padding-top:5px;">
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<div class="itab-top-poster">
<h3>{L_TOP_POSTERS}</h3>
<p>{TOP_POSTERS_LIST}<br />
<!-- IF TOP_POSTERS_HOURS_LIST -->
<i>{TOP_POSTERS_HOURS}</i>
{TOP_POSTERS_HOURS_LIST}
<!-- ENDIF -->
</p>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
</div>
<!-- ENDIF -->
viewforum.php
Code: Select all
//Generate top poster list if enabled
if ($config['amount_top_posters'])
{
if (!function_exists('get_top_posters'))
{
include_once($phpbb_root_path . 'includes/functions_topposter.' . $phpEx);
}
get_top_posters();
}
But whenever I click on the Tabb I am redirected to the index?