06.02.2013, 22:58
Dann ersetze in der Plugin-Datei noch diese Zeile
durch
PHP-Code:
if($threadlist)
{
// Show the table only if there are threads
eval("\$latestthreads = \"".$templates->get("portal_latestthreads")."\";");
}
PHP-Code:
if($threadlist && $mybb->user['uid'] != 0)
{
// Show the table only if there are threads
eval("\$latestthreads = \"".$templates->get("portal_latestthreads")."\";");
}