0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
php
/
lib
/
[
Home
]
File: function.MTDate.php
<?php function smarty_function_MTDate($args, &$ctx) { require_once("MTUtil.php"); $t = time(); if ($args['utc']) { $ts = gmtime($t); } else { $ts = offset_time_list($t, $ctx->stash('blog')); } $args['ts'] = sprintf("%04d%02d%02d%02d%02d%02d", $ts[5]+1900, $ts[4]+1, $ts[3], $ts[2], $ts[1], $ts[0]); return $ctx->_hdlr_date($args, $ctx); } ?>