Nie wiem czy pomoże, ale
includes\functions.php
// Add function realdate for Birthday MOD
// the originate php "date()", does not work proberly on all OS, especially when going back in time
// before year 1970 (year 0), this function "realdate()", has a mutch larger valid date range,
// from 1901 - 2099. it returns a "like" UNIX date format (only d,m and Y, may be used)
// is expect a input like a UNIX timestamp divided by 86400, so
// calculation from the originate php date and mktime is easy.
// e.g. realdate ("m d Y", 3) returns the string "1 3 1970"
oraz w admin\admin_users.php
Kod
SET "[...]user_birthday = $birthday[...]
$birthday = ($this_userdata['user_birthday']!= 999999) ? realdate('d-m-Y', $this_userdata['user_birthday']) : '';