[Solved] Anyone got a link for the timeago thang ?
422
MVP
Instead of time
I wanna show timeago .. I have doen the code once in one of our themes, buggered if i can find it ..
So time date is replaced with 9 minutes ago etc
0
Answers
this - google "time ago vanilla"
http://vanillaforums.org/discussion/14278/how-did-wikihow-forum-realize-to-show-minutes-ago-and-not-datetime
Yer had been trying that,
code snippet:
function TimeAgo($DateTime = false) { $Ret = ''; if($DateTime) { $Difference = time() - Gdn_Format::ToTimestamp($DateTime); $Ret = Gdn_Format::Seconds($Difference); $Ret .= T(' ago'); } return $Ret; }I think some of the vars have changed, in newer releases of vanilla. Since this was created
Fixed.
You need to do the edits also to: two other areas.
Repo: http://pastie.org/1479072
@422. What variable has $DateTime changed to in 2.0 version and above?
just use
http://vanillaforums.org/addon/timeago-plugin