В главном меню темы два раза повторяется кнопка "Личные Сообщения"

Автор dmitriy_af, 20 марта 2009, 10:42:16

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

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

dmitriy_af

Присмотрел красивую тему http://custom.simplemachines.org/themes/index.php?lemma=1335
Установил...и увидел, что в главном меню темы "Личные сообщения" повторяются два раза.
Искал везде, но не нашел...Очень прошу, помогите найти и удалить задвоившуюся кнопку!

Прикладываю файл index.tempate.php


Drakonsa


// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo '<li><a' , $current_action=='pm' ? ' class="current"' : '' , ' href="', $scripturl, '?action=pm"><span>' , $txt['pm_short'] , '</span></a><a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a></li>';

Меняешь на:

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo '<li><a ' , $current_action=='pm' ? ' class="current"' : '' , ' href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a></li>';

dmitriy_af