Quote:
Originally Posted by christianb
bcadd is php(server) related issue. I think a suitable workaround might be (offhand since I haven't tried it)...
PHP Code:
// Nicer Greeting On NavBar
$ng_gmt = date('G') + 6; // add + or - and the difference between the server and GMT. My time zone is GMT-6 so I add 6
$ng_tz_useroffset = $vbulletin->userinfo['timezoneoffset'];
// $ng_result = bcadd($ng_gmt, $ng_tz_useroffset); Replace this with:
$ng_result = $ng_gmt + $ng_tz_useroffset;
if($ng_result < 12){
$ng_greeting = "<strong>" . $vbphrase[ng_goodmorning] . " " . $vbulletin->userinfo[username] . ".";
} elseif($ng_result < 18){
$ng_greeting = "<strong>" . $vbphrase[ng_goodafternoon] . " " . $vbulletin->userinfo[username] . ".";
} else {
$ng_greeting = "<strong>" . $vbphrase[ng_goodevening] . " " . $vbulletin->userinfo[username] . ".";
}
// Nicer Greeting On NavBar
|
thanks that worked
i attached the fixed version for bcad