bewertungsmod probs
Verfasst: 29.11.2003 00:08
Hallo,
habe da ein Problem mit dem Mod...
denke das, der Mod nicht auf die lang_datei zu greift
hat jemand da eine Lösung für :?:
Benutze das phpBB Plus 1.3
Danke!
cu Stefan
habe da ein Problem mit dem Mod...
denke das, der Mod nicht auf die lang_datei zu greift

hat jemand da eine Lösung für :?:
Code: Alles auswählen
:arrow: includes/functions.php
#-----[ FIND ]------------------------------------------
#
#
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);
#-----[ AFTER, ADD ]------------------------------------------
#
#
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_rate.' . $phpEx);
Code: Alles auswählen
:arrow: //
// If the header hasn't been output then do it
//
if ( !defined('HEADER_INC') && $msg_code != CRITICAL_ERROR )
{
if ( empty($lang) )
{
if ( !empty($board_config['default_lang']) )
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.'.$phpEx);
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_rate.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
}
}
if ( empty($template) )
{
$template = new Template($phpbb_root_path . 'templates/' . $board_config['board_template']);
}
if ( empty($theme) )
{
$theme = setup_style($board_config['default_style']);
}
Danke!
cu Stefan