Quote:
Originally Posted by Saint_ago
Hi! That's a nice hack, thank you for doing it!
I've installed the hack yesterday, and i'm having an issue with the Thumbs Center. In the column "Date/Time", all dates and time are showing the variables "d-m-Y - H:i" instead of the actual date and time. How can i fix it?
Thanks in advance
|
Fixed by myself.
In "thumbs_center.php"
Changed from:
Code:
$content['date'] = vbdate("d-m-Y - H:i", $xxx['xxx']);
To:
Code:
$content['date'] = vbdate($vbulletin->options['dateformat'] . ', ' . $vbulletin->options['timeformat'], $xxx['xxx']);
Now it uses the date/time format i've set in Vbulletin settings