diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-14 00:47:29 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-14 00:47:29 +0000 |
commit | c4e753e74aebe41281d19fc853c2850eb514bfc1 (patch) | |
tree | 90a2f17c7cfdb5aa51317d5303fd5885351ea69a | |
parent | 039229d3eba20d00e3de8944e06d0810429fdbf2 (diff) | |
download | forums-c4e753e74aebe41281d19fc853c2850eb514bfc1.tar forums-c4e753e74aebe41281d19fc853c2850eb514bfc1.tar.gz forums-c4e753e74aebe41281d19fc853c2850eb514bfc1.tar.bz2 forums-c4e753e74aebe41281d19fc853c2850eb514bfc1.tar.xz forums-c4e753e74aebe41281d19fc853c2850eb514bfc1.zip |
Updates to remove search new for anonymous users ... will soon become pointless
git-svn-id: file:///svn/phpbb/trunk@1559 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/templates/Euclid/overall_header.tpl | 6 | ||||
-rw-r--r-- | phpBB/templates/subSilver/index_body.tpl | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/phpBB/templates/Euclid/overall_header.tpl b/phpBB/templates/Euclid/overall_header.tpl index f25fa4c395..646891756b 100644 --- a/phpBB/templates/Euclid/overall_header.tpl +++ b/phpBB/templates/Euclid/overall_header.tpl @@ -86,7 +86,11 @@ HR {border: solid {T_FONTCOLOR1} 0px; border-top-width: 1px; height: 0px; } <tr> <td width="100%"><table width="100%" cellspacing="1" cellpadding="4" border="0"> <tr> - <td><span class="gensmall">{LAST_VISIT_DATE} / <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></span></td> + <td><span class="gensmall"> + <!-- BEGIN switch_user_logged_in --> + {LAST_VISIT_DATE} / <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a> + <!-- END switch_user_logged_in --> + </span></td> <td align="right"><span class="gensmall">{CURRENT_TIME}</span></td> </tr> </table></td> diff --git a/phpBB/templates/subSilver/index_body.tpl b/phpBB/templates/subSilver/index_body.tpl index d8265135b1..782f293d57 100644 --- a/phpBB/templates/subSilver/index_body.tpl +++ b/phpBB/templates/subSilver/index_body.tpl @@ -3,12 +3,16 @@ <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> - <td align="left" valign="bottom"><span class="gensmall">{LAST_VISIT_DATE}<br />{CURRENT_TIME}<br /><br /></span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> + <td align="left" valign="bottom"><span class="gensmall"> + <!-- BEGIN switch_user_logged_in --> + {LAST_VISIT_DATE}<br /> + <!-- END switch_user_logged_in --> + {CURRENT_TIME}<br /><br /></span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td> <td align="right" valign="bottom" class="gensmall"> <!-- BEGIN switch_user_logged_in --> - <a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> + <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br /> <!-- END switch_user_logged_in --> - <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a><br /><a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a></td> + <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td> </tr> </table> |