Quote:
Originally Posted by Bhuwan
Very nice...I've installed this...The only complaint I had was it wasn't doing the bottom portion of the time (All times are in GMT <> The time now is <>).
The reason is becuase that is calcualted BEFORE global_start is executed, so it takes the lang default...I solved this by changing the code a bit and moving it to fetch_userinfo....
|
I've done this as well. Here is the code you need to use if you want to place the hook at fetch_userinfo:
PHP Code:
// ############ Date Format as Uservalue ################
switch ($user['field14']) {
case 'US Format':
$vbulletin->options['dateformat'] = 'm-d-y';
break;
case 'Expanded US Format':
$vbulletin->options['dateformat'] = 'M jS, Y';
break;
case 'European Format':
$vbulletin->options['dateformat'] = 'd-m-y';
break;
case 'Expanded European Format':
$vbulletin->options['dateformat'] = 'jS M Y';
break;
default:
$vbulletin->options['dateformat'] = 'm-d-y';
}
// ############ Time Format as Uservalue ################
switch ($user['field15']) {
case '12-Hour Time Format':
$vbulletin->options['timeformat'] = 'h:i A';
break;
case '24-Hour Time Format':
$vbulletin->options['timeformat'] = 'H:i';
break;
default:
$vbulletin->options['timeformat'] = 'h:i A';
}
Remember to change 14 and 15 to whatever your fields are.