MyBB Community Forums
my_date - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: my_date (/thread-178679.html)



my_date - chack1172 - 2015-09-10

Hi guys I am using my_date with time relative but it don't show me seconds ago, how to show it?


RE: my_date - Sazze - 2015-09-11

$variable = my_date('relative', $bla['dateline']);


RE: my_date - chack1172 - 2015-09-11

@sazze with 'relative' it don't show me seconds ago, but show me less than 1 minute ago


RE: my_date - Sazze - 2015-09-11

(2015-09-11, 01:13 PM)chack1172 Wrote: @sazze with 'relative' it don't show me seconds ago, but show me less than 1 minute ago

You'd have to edit a core file to make it "% seconds ago".


RE: my_date - Sazze - 2015-10-03

(2015-09-10, 09:10 PM)chack1172 Wrote: Hi guys I am using my_date with time relative but it don't show me seconds ago, how to show it?

Just did this to my forum, and it works:

1. Edit functions.php located in inc folder
2. Find

if($diff <= 60)
{
// Less than a minute
$relative['prefix'] = $lang->rel_less_than;
}

3. Replace it with

if($diff <= 60)
{
// seconds ago
return $diff == 1 ? $diff . ' second ago' : $diff . ' seconds ago';
}

[Image: GyVg8xX.png]