Quote:
Originally Posted by Yarub
Hmmm... I still can't get it to work...
I'm using this to call for it: $bbuserinfo[joindate]
This is what I have in my plugin...
Code:
// JOIN DATE & POSTS PER DAY
$vbulletin->userinfo['datejoined'] = vbdate($vbulletin->options['registereddateformat'], $unixtimestamp);
$jointime = (TIMENOW - $vbulletin->userinfo['joindate']) / 86400;
How can I make it work? >_<
|
You have to change things to suit your needs...
The code below will work on any vbulletin .php file or hook location:
PHP Code:
$joindate = vbdate($vbulletin->options['dateformat'], $vbulletin->userinfo['joindate']);
$jointime = (TIMENOW - $vbulletin->userinfo['joindate']) / 86400;