Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

Less than 1 minute ago > % second(s) ago

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

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


3. Replace it with

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


[Image: GyVg8xX.png]

Viewing all articles
Browse latest Browse all 690

Trending Articles