Habe das Update mittels des automatsichen Updates gemacht und den selben Fehler:
Language file ./../language/de/de/common.php couldn't be opened.
Vermute den Fehler in der session.php
Code: Alles auswählen
/**
* Constructor to set the lang path
*/
function user()
{
global $phpbb_root_path;
$this->lang_path = $phpbb_root_path . 'language/';
}
/**
* Function to set custom language path (able to use directory outside of phpBB)
*
* @param string $lang_path New language path used.
* @access public
*/
function set_custom_lang_path($lang_path)
{
$this->lang_path = $lang_path;
if (substr($this->lang_path, -1) != '/')
{
$this->lang_path .= '/';
}
}
habe aber keine Ahnung was dort falsch ist ... bzw wo das Problem
EDIT:
Wenn man bissel weiter vergleich wird das hier geprüft:
3.0.3
Code: Alles auswählen
if ((@include $this->lang_path . $this->lang_name . "/common.$phpEx") === false)
3.0.2
Code: Alles auswählen
if ((@include $this->lang_path . "common.$phpEx") === false)