das wäre superpv_fanatic hat geschrieben:Ich könnte das übersetzen und dann rüberschicken, jedoch muss ich erstmal mein Problem fixen.
ich hab jetzt alles installiert und brauch nur noch die lang_german.php
Code: Alles auswählen
//
// 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);
if ( defined('IN_CASHMOD') )
{
if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.'.$phpEx)) )
{
include($phpbb_root_path . 'language/lang_english/lang_cash.' . $phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_cash.' . $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']);
}
Also von der Datei-Version 2.0.1.1 (cash.php) kann ich also nach diesem Updateschritt vorgehen?naderman hat geschrieben:
- Vom Cash Mod 2.0.0 und 2.0.2
- Folge den Anleitungen aus /upgrade_202_221/cm_upgrade_202_221.txt
(dies funktioniert für 2.0.0 und 2.0.2)