Seite 1 von 1

Verfasst: 06.10.2004 20:04
von tomtom
Abgetrennt von http://www.phpbb.de/viewtopic.php?t=67048

Beim Aufruf eines Themas:
Fatal error: Call to undefined function: make_forum_select() in /srv/www/htdocs/web317/html/forum/viewtopic.php on line 616
if ( $is_auth['auth_mod'] )
{
$template->assign_block_vars('mod', array(
'L_MOVE_TITLE' => $lang['Move_topic'],
'L_MOVE_TO_FORUM' => $lang['Move_to_forum'],
'L_LEAVESHADOW' => $lang['Leave_shadow_topic'],
'L_YES' => $lang['Yes'],
'S_FORUM_SELECT' => make_forum_select('new_forum', $forum_id), <-- 616
'S_MOVE_ACTION' => append_sid("viewtopic.php?t=". $topic_id),
'S_HIDDEN_FIELDS' => $hidden_fields)
);
}

Verfasst: 06.10.2004 20:34
von Leuchte
:oops:
viewtopic.php
Finde

Code: Alles auswählen

include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
Füge danach ein

Code: Alles auswählen

include($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
Anleitung angepasst

Verfasst: 06.10.2004 20:38
von tomtom
Tut. ;)