I havnt tried that yet, I will. Now I have one last issue. I'm trying to display the same thing on forumdisplay. My forumdisplay query hook has:
Code:
$hook_query_fields .= ", thread_expiry";
if I put $thread[thread_expiry] in my threadbit template...Im able to pull my timestamp results just fine, but they are in unix time.
So beneath it I'm trying to do:
Code:
$thread['thread_expiry'] = vbdate($vbulletin->options['dateformat'], , $thread['thread_expiry']);
It's not converting it though. Is this right or do I need it in another hook? I tried putting that conversion code part in forumdisplay start hook too and no luck...it doesnt convert it