diff options
author | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-09-23 11:40:21 +0000 |
---|---|---|
committer | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-09-23 11:40:21 +0000 |
commit | 1ab3494b444136ddba445cb9eefc051c3d044ee4 (patch) | |
tree | c1c9fd74124fc0a2762f538df714098143f324fc /phpBB | |
parent | 70dffaacbd0e42c6d67bca24b45fd3125c715e85 (diff) | |
download | forums-1ab3494b444136ddba445cb9eefc051c3d044ee4.tar forums-1ab3494b444136ddba445cb9eefc051c3d044ee4.tar.gz forums-1ab3494b444136ddba445cb9eefc051c3d044ee4.tar.bz2 forums-1ab3494b444136ddba445cb9eefc051c3d044ee4.tar.xz forums-1ab3494b444136ddba445cb9eefc051c3d044ee4.zip |
Bug #3592
This changes the layout for links without redirect count a little but it stops breaking the layout in certain situations.
git-svn-id: file:///svn/phpbb/trunk@6392 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/subSilver/template/forumlist_body.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/styles/subSilver/template/forumlist_body.html b/phpBB/styles/subSilver/template/forumlist_body.html index 238474c02a..aa1c56c3dd 100644 --- a/phpBB/styles/subSilver/template/forumlist_body.html +++ b/phpBB/styles/subSilver/template/forumlist_body.html @@ -17,12 +17,14 @@ <!-- ELSEIF forumrow.S_IS_LINK --> <tr> <td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td> - <!-- IF forumrow.CLICKS --><td class="row1"><!-- ELSE --><td class="row1" colspan="4"><!-- ENDIF --> + <!-- IF forumrow.CLICKS --><td class="row1"><!-- ELSE --><td class="row1"><!-- ENDIF --> <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a> <p class="forumdesc">{forumrow.FORUM_DESC}</p> </td> <!-- IF forumrow.CLICKS --> <td class="row2" colspan="3" align="center"><span class="genmed">{L_REDIRECTS}: {forumrow.CLICKS}</span></td> + <!-- ELSE --> + <td class="row2" colspan="3" align="center"></td> <!-- ENDIF --> </tr> <!-- ELSE --> |