|
From: James A. <th...@us...> - 2001-11-14 06:37:08
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv19240/templates/subSilver
Modified Files:
index_body.tpl search_body.tpl
Log Message:
Implemented Bart's 'egosearch', and the search for unanswered posts.
Created links that are accessable from anywhere
Index: index_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/index_body.tpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** index_body.tpl 2001/11/03 15:15:05 1.7
--- index_body.tpl 2001/11/14 06:37:05 1.8
***************
*** 3,7 ****
<tr>
<td align="left" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
! <td align="right" class="gensmall"><a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />{L_LAST_VISIT} {LAST_VISIT_DATE}</td>
</tr>
</table>
--- 3,12 ----
<tr>
<td align="left" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
! <td align="right" class="gensmall">
! <!-- BEGIN egosearch -->
! <a href="{egosearch.U_SEARCH_SELF}" class="gensmall">{egosearch.L_SEARCH_SELF}</a><br />
! <!-- END egosearch -->
! <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a><br />
! <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />{L_LAST_VISIT} {LAST_VISIT_DATE}</td>
</tr>
</table>
Index: search_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/search_body.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** search_body.tpl 2001/11/09 13:00:04 1.3
--- search_body.tpl 2001/11/14 06:37:05 1.4
***************
*** 1,3 ****
! <form action="{S_SEARCH_ACTION}" method="post">
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
--- 1,3 ----
! <form action="{S_SEARCH_ACTION}" method="POST">
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
|