function bb2_convertdate in Bad Behavior 5.2
Same name and namespace in other branches
- 6.2 badbehavior.module \bb2_convertdate()
- 6 badbehavior.module \bb2_convertdate()
- 7.2 badbehavior.module \bb2_convertdate()
2 calls to bb2_convertdate()
File
- ./
badbehavior.module, line 253
Code
function bb2_convertdate($bbdate) {
$timestamp = strtotime($bbdate . ' UTC');
return format_date($timestamp, 'small');
}