diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-26 17:15:38 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-26 17:15:38 +0000 |
commit | 72c44126e6d74b1e14c451e19f1f0bd09e90bab6 (patch) | |
tree | ea2edf2663928c13f0968e70406612ea54509078 /phpBB/templates | |
parent | 46e20bf2d12de5f6ad48ea88f66848297b8aced1 (diff) | |
download | forums-72c44126e6d74b1e14c451e19f1f0bd09e90bab6.tar forums-72c44126e6d74b1e14c451e19f1f0bd09e90bab6.tar.gz forums-72c44126e6d74b1e14c451e19f1f0bd09e90bab6.tar.bz2 forums-72c44126e6d74b1e14c451e19f1f0bd09e90bab6.tar.xz forums-72c44126e6d74b1e14c451e19f1f0bd09e90bab6.zip |
Allow style designer the option of seperating off announcements to make them more prominent
git-svn-id: file:///svn/phpbb/trunk@3546 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/subSilver/viewforum_body.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/viewforum_body.html b/phpBB/templates/subSilver/viewforum_body.html index 95badff780..e51be9e522 100644 --- a/phpBB/templates/subSilver/viewforum_body.html +++ b/phpBB/templates/subSilver/viewforum_body.html @@ -11,7 +11,6 @@ </tr> </table> -<!-- if the forum is postable output the viewforum listing --> <!-- IF S_IS_POSTABLE --> <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> @@ -26,7 +25,6 @@ <!-- INCLUDE viewforum_subforum.html --> <!-- ENDIF --> -<!-- if the forum is postable output the viewforum listing --> <!-- IF S_IS_POSTABLE --> <table class="tablebg" width="100%" cellspacing="1" cellpadding="4" border="0"> <tr> @@ -41,6 +39,15 @@ <th align="center" nowrap="nowrap"> {L_LAST_POST} </th> </tr> <!-- BEGIN topicrow --> + <!-- IF topicrow.S_TOPIC_TYPE_SWITCH eq 1 --> + <tr> + <td class="row3" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->"><b class="gensmall">{L_ANNOUNCEMENTS}</b></td> + </tr> + <!-- ELSEIF topicrow.S_TOPIC_TYPE_SWITCH eq 0 --> + <tr> + <td class="row3" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->"><b class="gensmall">{L_TOPICS}</b></td> + </tr> + <!-- ENDIF --> <tr> <td class="row1" width="20" align="center" valign="middle">{topicrow.TOPIC_FOLDER_IMG}</td> <!-- IF S_TOPIC_ICONS --> |