2011-11-20, 04:17:38
Hi andyash;
In this moment, use a function of getsimple lngDate, that is in admin/inc/basic.php. You can modify format date of post in lines +-526 to 530 and lines 590 to 594:
You have to put format date in $d= lngDate($d), replace lngDate what you want.
Regards.
PD: in the next version, will try put format date of comments and news in setting, lang and email...
In this moment, use a function of getsimple lngDate, that is in admin/inc/basic.php. You can modify format date of post in lines +-526 to 530 and lines 590 to 594:
Code:
else if ($n == 'date'){
$d = substr($d,0,strpos($d,'+')-1);
$d = lngDate($d);
$lin .= '</span> <span class="data">'.htmlentities(i18n_r('news_comments/Ps'), ENT_QUOTES, "UTF-8").' '.stripslashes($d).'</span></dt>';
echo $lin;
}
You have to put format date in $d= lngDate($d), replace lngDate what you want.
Regards.
PD: in the next version, will try put format date of comments and news in setting, lang and email...