дата кракозябрами в последних постах

Автор Acid.Name, 25 ноября 2009, 10:53:48

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

Acid.Name

подскажите не могу понять почему дата кракозябрами выводиться  idiot

я менял кадировку базы с cp1251 на utf8 не помогло.

кусок кода который отвечает за вывод последних сообщений в шаблоне я нашел

BoardIndex.template.php

// Show lots of posts.
elseif (!empty($context['latest_posts']))
{
echo '
<dl id="infocenter_recentposts" class="middletext">';

/* Each post in latest_posts has:
board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.),
subject, short_subject (shortened with...), time, link, and href. */
foreach ($context['latest_posts'] as $post)
echo '
<dt><strong>', $post['link'], '</strong> ', $txt['by'], ' ', $post['poster']['link'], ' (', $post['board']['link'], ')</dt>
<dd>', $post['time'], '</dd>';
echo '
</dl>';



я пробовал и так делать iconv("utf-8","cp1251",$post['time'])

не хочет отображаться по руски месяц кто сталкивался подскажите

такая проблема на всех темах оформления влючая стандартную


Acid.Name