I use this mod in my forum for quite a long time and like it very much

Actually, I modified it to show other custom infos for every forum as well.
http://www.fehler-im-film.de/forum/f...play.php?f=389
You can see the images, but also "IMDB", "OFDB" and "Kino.de" custom links.
I added a field "Kinostart" (theatrical release) which has the date. But the format is english. I tried to get the german format without any success.
What I tried so far is
Code:
if ($forum['subinfos'] == 'kinostart')
{
$forum['customsubinfos'] = date("d.m.Y", strtotime($forum['kinostart']));
}
But then it is just empty.
Any ideas how to convert the date?