diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-11-14 06:37:05 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-11-14 06:37:05 +0000 |
commit | f448cdf609e172758c0c22477d639762c7ebdfce (patch) | |
tree | 07e35f646acd1143cb224fafa1658764db453b99 /phpBB/templates | |
parent | f697f045141b6b1653a6c7b87880b363a2c28c9e (diff) | |
download | forums-f448cdf609e172758c0c22477d639762c7ebdfce.tar forums-f448cdf609e172758c0c22477d639762c7ebdfce.tar.gz forums-f448cdf609e172758c0c22477d639762c7ebdfce.tar.bz2 forums-f448cdf609e172758c0c22477d639762c7ebdfce.tar.xz forums-f448cdf609e172758c0c22477d639762c7ebdfce.zip |
Implemented Bart's 'egosearch', and the search for unanswered posts.
Created links that are accessable from anywhere
git-svn-id: file:///svn/phpbb/trunk@1310 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/subSilver/index_body.tpl | 7 | ||||
-rw-r--r-- | phpBB/templates/subSilver/search_body.tpl | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/index_body.tpl b/phpBB/templates/subSilver/index_body.tpl index d627e751f3..490bd12e8b 100644 --- a/phpBB/templates/subSilver/index_body.tpl +++ b/phpBB/templates/subSilver/index_body.tpl @@ -2,7 +2,12 @@ <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <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> + <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> diff --git a/phpBB/templates/subSilver/search_body.tpl b/phpBB/templates/subSilver/search_body.tpl index 95b65973a8..f142d92340 100644 --- a/phpBB/templates/subSilver/search_body.tpl +++ b/phpBB/templates/subSilver/search_body.tpl @@ -1,4 +1,4 @@ -<form action="{S_SEARCH_ACTION}" method="post"> +<form action="{S_SEARCH_ACTION}" method="POST"> <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td> |