Fehlermeldung beim öffnen von Recent
Fatal error: Call to a member function sql_query() on a non-object in /var/www/users/klakal/forum/recent.php on line 11
Hier gehts zum Forum
Hoffe mal ihr könnt mir helfen
lg Karl
Hier der Code der ersten 20 Zeilen
Code: Alles auswählen
// ############ Edit below ########################################
$topic_length = '30'; // length of topic title
$topic_limit = '5'; // limit of displayed topics
$special_forums = '0'; // specify forums ('0' = no; '1' = yes)
$forum_ids = ''; // IDs of forums; separate them with a comma
$content = '300'; // length of displayed text
// ############ Edit above ########################################
$sql_auth = "SELECT * FROM ". FORUMS_TABLE;
if( !$result_auth = $db->sql_query($sql_auth) )
{
message_die(GENERAL_ERROR, 'could not query forums information.', '', __LINE__, __FILE__, $sql_auth);
}
$forums = array();
while( $row_auth = $db->sql_fetchrow($result_auth) )
{
$forums[] = $row_auth;
}
$db->sql_freeresult($result_auth);