You are here

function bb2_convertdate in Bad Behavior 6

Same name and namespace in other branches
  1. 5.2 badbehavior.module \bb2_convertdate()
  2. 6.2 badbehavior.module \bb2_convertdate()
  3. 7.2 badbehavior.module \bb2_convertdate()
2 calls to bb2_convertdate()
badbehavior_event in ./badbehavior.admin.inc
badbehavior_overview in ./badbehavior.admin.inc
@file Admin page callbacks for the badbehavior module.

File

./badbehavior.module, line 196

Code

function bb2_convertdate($bbdate) {
  $timestamp = strtotime($bbdate . ' UTC');
  return format_date($timestamp, 'small');
}