Code: Alles auswählen
Allgemeiner Fehler
Could not obtain SCHONGEWUSST information
DEBUG MODE
SQL Error : 1146 Table 'DB169924.phpbb_schongewusst' doesn't exist
SELECT word FROM phpbb_schongewusst ORDER BY RAND() LIMIT 1
Line : 546
File : page_header.php
Code: Alles auswählen
'L_FAQ' => $lang['FAQ'],
//begin schon gewusst mod
'SCHONGEWUSST' => $lang['SchonGewusstBox'],
//end schon gewusst mod
Code: Alles auswählen
// SCHONGEWUSST START
$sql = "SELECT word FROM " . SCHONGEWUSST_TABLE . " ORDER BY RAND() LIMIT 1";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain SCHONGEWUSST information', '', __LINE__, __FILE__, $sql);
}
$row = $db->sql_fetchrow($result);
$template->assign_block_vars("schongewusst", array(
'word' => $row['word']
));
// SCHONGEWUSST END
$template->pparse('overall_header');
