Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Date/time in posts...
Is there an extension that will provide more detail to the time a post was made instead of just giving the Day/Month/Year? So I guess, just the time in addition to the current date is what I'm looking for.
0
This discussion has been closed.
Comments
Find the following line:
TimeDiff($this->Context, $Comment->DateCreated);
And change it to something like:
date('M jS, Y g:ia', $Comment->DateCreated);
Here's a reference to the php date function in case you want it to be formatted a different way...