Geburtstagsdatum im birthday-mod
Verfasst: 29.02.2004 17:32
Habe den birthday-mod erfolgreich installiert. Gibt es eine Möglichkeit, das Geburtstagsdatum im Profil nicht als dd.mm.yyyy anzuzeigen sondern nur als dd.mm?


phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
$user_birthday = realdate($lang['DATE_FORMAT'], $profiledata['user_birthday']);
Code: Alles auswählen
$user_birthday = date('d.m.', $profiledata['user_birthday']);
Code: Alles auswählen
$user_birthday = realdate('d.m.', $profiledata['user_birthday']);