Mi też nic nie pokazuje. Wstawiam raz jeszcze jak wszystko mam powpisywane.
memberlist
$search_url = "memberlist.php?sort={$mybb->input['sort']}&order={$mybb->input['order']}&perpage={$mybb->input['perpage']}";
// Group legend
$search_usergroup = intval($mybb->input['usergroup']);
if($search_usergroup> 0)
{
$search_query .= " AND u.usergroup = ".$search_usergroup;
$search_url .= "&usergroup=".$search_usergroup;
}
szablon legenda:
<html>
<head>
{$headerinclude}
<title>Legenda grup</title>
</head>
<body>
{$header}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;">
<tr>
<td class="thead" colspan="2">
LEGENDA GRUP
</td>
</tr>
<tr>
<td class="trow2 post_content ">
{$ugl_userlegend}
</td>
</tr>
</table>
{$footer}
</body>
</html>
legenda.php
<?php
define('IN_MYBB', 1);
require "./global.php";
$plugins->run_hooks("grupy");
add_breadcrumb("Legenda grup", "legenda.php");
eval("\$podstr = \"".$templates->get("legenda")."\";");
output_page($podstr);
?>
whosonline
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$lang->online}</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">
{$lang->online_users}<br /><strong>»</strong> {$lang->online_counts}<br />{$onlinemembers}
<br />
<br />
<a href="{$mybb->settings['bburl']}/legenda.php">Sprawdź co oznaczają rangi</a>
</span>
</td>
</tr>
</table>
<br />