Seite 1 von 1

bewertungsmod probs

Verfasst: 29.11.2003 00:08
von punker
Hallo,

habe da ein Problem mit dem Mod...

denke das, der Mod nicht auf die lang_datei zu greift :roll:

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']);
		}
Benutze das phpBB Plus 1.3

Danke!

cu Stefan

Verfasst: 29.11.2003 00:17
von florian2003

Code: Alles auswählen

include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.'.$phpEx);
dürfte wohl dem

Code: Alles auswählen

include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx); 
entsprechen! du hast die zeile darunter wohl schon hinzugefügt?!

Verfasst: 29.11.2003 18:18
von punker
ja, habe ich auch eingefügt wird aber trotzdem nicht anzeigt...
komisch alles :(