Тема: Banner Client
Показать сообщение отдельно
Steel вне форума      Старый #3  
Steel
Новенький
Регистрация: 28.02.2005
Сообщения: 8


Пожаловаться на это сообщениеОтветить с цитированием

Посмотреть профиль Отправить персональное сообщение для Steel Найти все сообщения от Steel Добавить Steel в список друзей  
28.02.2005, 16:37

Вот эту часть
Код:
THEMEHEADER ORIGINAL LINES if ($banners == 1) { include("banners.php"); } THEMEHEADER NEW LINES if ($banners == 1) { include("includes/banners1.php"); include("includes/banners2.php"); include("includes/banners3.php"); }

вставил перед этой
Код:
/************************************************** **********/ /* Function themeheader() */ /************************************************** **********/ function themeheader() { global $banners, $cookie, $user, $module_name;

эту
Код:
THEMEFOOTER NEW LINES (place just after the global line) if ($banners == 1) { include("includes/banners4.php"); include("includes/banners5.php"); include("includes/banners6.php"); }

перед этой
Код:
/************************************************** **********/ /* Function themefooter() */ /************************************************** **********/ function themefooter() { global $index, $module_name;


А вот что было написано в document.txt добавил в mainfile.php
И вылазиет вот теперь эта ошибка Parse error: parse error, unexpected T_STRING in /home/sasha_k/www/themes/Delfi_Gray/theme.php on line 43 хотя там стоит THEMEHEADER ORIGINAL LINES
Что сделал не так?

Вот не пойму что здесь надо делать?
You will have to add the following to your theme.php (if your theme uses
html files this is the one to edit):
1) $tbanners1 to the header display for placement 1 (header.html).
2) $tbanners2 to the left_center display for placement 2 (left_center.html).
3) $tbanners5 to the center_right display for placement 5 (certer_right.html).
4) $tbanners6 to the footer display for placement 6 (footer.html).