// ###################### Start show_nopermission ####################### function vbdate($format,$timestamp) { global $bbuserinfo,$timeoffset; return date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600); }
Download Now
Show Your Support
function vbdate($format,$timestamp) {
function vbdatenoty($format,$timestamp) {
function vbdate($format,$timestamp) { global $bbuserinfo,$timeoffset, $dateformat, $timeformat; if ($dateformat==$format) { $todaystamp=mktime(); $todaydate=date($format,$todaystamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600); $yestdate=date($format,(($todaystamp-86400)+($bbuserinfo['timezoneoffset']-$timeoffset)*3600)); $date = date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600); if ($date==$todaydate) { $date="Today"; } if ($date==$yestdate) { $date="Yesterday"; } } else { $date = date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600); } return $date; }