Ungetestet, backup machen!
Fehler hier posten!
in der userinfo.php
Suche nach:
|
PHP-Quelltext
|
1
2
3
4
5
6
7
|
if ($userinfo['user_bd_day']!=0 && $userinfo['user_bd_month']!=0 && $userinfo['user_bd_year']!=0) {
$info_birthday=$userinfo['user_bd_day'].". ";
$month=$lang['all_month'];
$month=$month[$userinfo['user_bd_month']];
$info_birthday.=$month[1]." ";
$info_birthday.=$userinfo['user_bd_year']." - ".$lang['age'].": ".getAge($userinfo[user_bd_day],$userinfo[user_bd_month],$userinfo[user_bd_year]);
}
|
Ersetzte mit:
|
PHP-Quelltext
|
1
2
3
4
5
6
7
8
|
if ($userinfo['user_bd_day']!=0 && $userinfo['user_bd_month']!=0 && $userinfo['user_bd_year']!=0) {
$info_birthday=$userinfo['user_bd_day'].". ";
//$month=$lang['all_month'];
//$month=$month[$userinfo['user_bd_month']];
//$info_birthday.=$month[1]." ";
$info_birthday.=$userinfo['user_bd_month']." ";
$info_birthday.=$userinfo['user_bd_year']." - ".$lang['age'].": ".getAge($userinfo[user_bd_day],$userinfo[user_bd_month],$userinfo[user_bd_year]);
}
|
einfahc mal probieren und sagenwas bei raus kommt