Формат даты в модуле последние материалы
/components/content/model.php
строка 273
строчку:
$article['fpubdate'] = cmsCore::dateFormat($article['fpubdate'];
поменять (или закомментить)
на
$article['newfpubdate'] = date('d.m.Y', strtotime($article['fpubdate']));
в папке шаблона файл /modules/mod_latest.tpl
строка 26:
{$article.fpubdate} — <a href="{profile_url login=$article.user_login}">{$article.author}</a>{if $cfg.showcom} — <a href="{$article.url}" title="{$article.comments|spellcount:$LANG.COMMENT1:$LANG.COMMENT2:$LANG.COMMENT10}" class="mod_latest_comments">{$article.comments}</a>{/if} — <span class="mod_latest_hits">{$article.hits}</span>
заменить на
{$article.newfpubdate} — <a href="{profile_url login=$article.user_login}">{$article.author}</a>{if $cfg.showcom} — <a href="{$article.url}" title="{$article.comments|spellcount:$LANG.COMMENT1:$LANG.COMMENT2:$LANG.COMMENT10}" class="mod_latest_comments">{$article.comments}</a>{/if} — <span class="mod_latest_hits">{$article.hits}</span>