у дамочки ipb стоит
Для phpbb такой мод можно состряпать, если его нет
Только есть ли смысл перегружать страницу
Добавлено спустя 26 минут 42 секунды:
от прочтения поста до заливки обновленных файлов прошло пятнадцать минут смотрите
http://forum.aeroion.ru/
Добавлено спустя 7 минут 41 секунду:
Как сделать такой же поиск
открыть
index.php
найти
//
// Okay, let's build the index
//
for($i = 0; $i < $total_categories; $i++)
добавить перед
$template->assign_vars(array(
'L_SEARCH_FOR' => $lang['Search_for'],
'L_SUBMIT_SEARCH' => $lang['Search'])
);
открыть
templates/ваш стиль/index_body.tpl
найти
<td class="rowpic" colspan="3" align="right"> </td>
</tr>
<!-- BEGIN forumrow -->
заменить этим
<td class="rowpic" colspan="3" align="right">
<form method="post" action="search.php?mode=results">
<input type="hidden" name="search_cat" value="{catrow.CAT_ID}">
<input type="hidden" name="show_results" value="topics">
<input type="hidden" name="search_terms" value="any">
<input type="hidden" name="search_fields" value="all">
<span class="gensmall"><input type="text" name="search_keywords" value="{L_SEARCH_FOR}" onfocus="this.value='';" size="20" maxlength="150" /> <input type="submit" name="submit" value=">>" class="liteoption" />
</form>
</td>
</tr>
<!-- BEGIN forumrow -->