MODs: Nein
Dein Wissensstand: Einsteiger
Link zu Deinem Forum: http://www.progressive-paradise.com/forum/phpBB2/
PHP Version:
MySQL Version:
Was hast Du gemacht, bevor das Problem aufgetreten ist?
Was hast Du bereits versucht um das Problem zu lösen?
Fehlerbeschreibung und Nachricht
ich hab profile_view in statistics_mod_v215 eingebaut. Ich habe CH mode drin. Jetzt bekomme ich die fehlermeldung:
Code: Alles auswählen
Fatal error: Call to a member function on a non-object in /forum/phpBB2/includes/functions.php on line 574Code: Alles auswählen
function create_date($format, $gmepoch, $tz)
{
//-- mod : categories hierarchy ------------------------------------------------
//-- delete
/*
global $board_config, $lang;
static $translate;
if ( empty($translate) && $board_config['default_lang'] != 'english' )
{
@reset($lang['datetime']);
while ( list($match, $replace) = @each($lang['datetime']) )
{
$translate[$match] = $replace;
}
}
return ( !empty($translate) ) ? strtr(@gmdate($format, $gmepoch + (3600 * ($tz+date("I")))), $translate) : @gmdate($format, $gmepoch + (3600 * ($tz+date("I"))));
*/
//-- add
global $user;
return $user->date($gmepoch, $format);
//-- fin mod : categories hierarchy --------------------------------------------
}