Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Solved] birthday shown wrong. shows day before selected DoB instead (new version)
fh111
✭✭
really neat plugin, thanks!!
i noticed that when i select july 1 as my date of birth it ends up showing june 30
it always substracts one day, no matter what the DoB is
0
Answers
Interesting I use vanilla date format method
Gdn_Format::Date($MetaV,'%B %e, %Y');
will look into it.
grep is your friend.
Ah yes this is to do with vanilla's hour offset
grep is your friend.
Fixed
http://vanillaforums.org/addon/myprofile-plugin
the date format is the same as
Date.DefaultFormat locale, which by default is
%B %e, %Y
strftime(T('Date.DefaultFormat','%B %e, %Y'), strtotime($MetaV));
http://uk.php.net/manual/en/function.strftime.php
for details
grep is your friend.
fantastico, thanks for fixing!
no wories
grep is your friend.