Код: Выделить всё
## MOD Title: Forum icons (read/unread) for index.php
## MOD Author: Sergeant < sergeant@vladmobile.com > http://www.vladivostok.ru/forum4
##
## MOD Description: This mod allows admin to assign two icons to each forum of the board
## One icon will show up in case of new messages, other will be shown when there are
## no new messages. These icons will be in main table (index.php).
## If no icons specified will be shown default icon.
##
## Author notes: This mod is an improved variant of 'Forum Icon with ACP Control' mod (by Mac (Y.C. LIN)).
##
## Usage: After installation you'll have to put two images (for each forum you would like to modify)
## for both conditions (read/unread) to your root dir (where index.php is located).
## The last thing will be entering the names of those images in forum properties (via admin control panel).
##
#################################################################
Вот мне нужно чтоб я для каждого форума мог прикрутить свою иконку, которая отображалась бы в зависимости от статуса форума есть новые масаги/нет ... т.е. как раз этот мод и предлагает это.
Но с ним проблемка есть ..:
Поставил мод ИзиМодом на голый форум (extreme styles и uploadpic не в счет), мод поставился сразу без намека на ошибки ... но после мода нельзя попасть на индекс теперь:
Код: Выделить всё
Parse error: parse error, unexpected '"' in D:\HTTP\www\phpbb2\index.php on line 400
Код: Выделить всё
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
$folder_image = ( $unread_topics ) ? $images['forum_new'] : $images['forum'];
$folder_alt = ( $unread_topics ) ? $lang['New_posts'] : $lang['No_new_posts'];
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
$folder_alt = ( $unread_topics ) ? $lang['New_posts'] : $lang['No_new_posts'];
if($forum_data[$j]['forum_icon_new_post']) {
$folder_image = ( $unread_topics ) ? '<img src="' . $phpbb_root_path . $forum_data[$j]['forum_icon_new_post'] . '" alt="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'" title="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'">' : '<img src="' . $phpbb_root_path . $forum_data[$j]['forum_icon_no_post'] . '" alt="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'" title="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'">';
} else{
$folder_image = ( $unread_topics ) ? '<img src="'.$images['forum_new'].'" alt="'.$folder_alt.'" title="'.$folder_alt.'" />' : '<img src="'.$images['forum'].'" alt="'.$folder_alt.'" title="'.$folder_alt.'" />';
};
}
Добавлено спустя 3 минуты 3 секунды:
Сама 400 строка:
Код: Выделить всё
$folder_image = ( $unread_topics ) ? '<img src="' . $phpbb_root_path . $forum_data[$j]['forum_icon_new_post'] . '" alt="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'" title="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'">' : '<img src="' . $phpbb_root_path . $forum_data[$j]['forum_icon_no_post'] . '" alt="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'" title="'.$forum_data[$j]['forum_name'].' - '".$folder_alt."'">';
А ну поняное дело форум v. 2.0.22