diff options
author | Nils Adermann <naderman@naderman.de> | 2007-12-01 13:16:37 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-12-01 13:16:37 +0000 |
commit | 2ae1f1c3a8354b7f098f6cee73a136e955b47b5b (patch) | |
tree | e70cd18c1f03e6a0219bd0fbe41d896b350e974e | |
parent | 90f5f6e025b187a9b370867673e41b7b2189abd3 (diff) | |
download | forums-2ae1f1c3a8354b7f098f6cee73a136e955b47b5b.tar forums-2ae1f1c3a8354b7f098f6cee73a136e955b47b5b.tar.gz forums-2ae1f1c3a8354b7f098f6cee73a136e955b47b5b.tar.bz2 forums-2ae1f1c3a8354b7f098f6cee73a136e955b47b5b.tar.xz forums-2ae1f1c3a8354b7f098f6cee73a136e955b47b5b.zip |
- no duplication of active topics [Bug #15474]
git-svn-id: file:///svn/phpbb/trunk@8259 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 5 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewforum_body.html | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index b3370cd862..340c83aff9 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -105,10 +105,13 @@ <li>[Change] Set template recompilation to be disabled by default. All mod and style authors and all those who want to modify their styles should enabled it after installation.</li> <li>[Change] Disable debug mode. All mod and style authors should enable DEBUG and DEBUG_EXTRA.</li> <li>[Fix] Check error reporting level for all error level. This fixes a problem for hosts having manipulated the error handler. (Bug #14831)</li> + <li>[Feature] Constant PHPBB_DB_NEW_LINK introduced which can be used to force phpBB to create a new database connection instead of reusing an existing one if the dbms supports it (Bug #14927)</li> + <li>[Fix] Automatic URL parsing no longer allows dots in the schema but can parse URLs starting after a dot (Bug #15110)</li> + <li>[Fix] Dynamic width for birthday select boxes (Bug #15149)</li> <li>[Fix] Recache Moderators when copying permissions. (Bug #15384)</li> <li>[Fix] Propagate sort options in mcp_forums (Bug #15464)</li> <li>[Change] Do not allow [size=0] bbcodes (font-size of 0)</li> - + <li>[Fix] No duplication of active topics (Bug #15474)</li> </ul> <a name="v30rc6"></a><h3>1.ii. Changes since 3.0.RC6</h3> diff --git a/phpBB/styles/subsilver2/template/viewforum_body.html b/phpBB/styles/subsilver2/template/viewforum_body.html index b6c9e8d437..c196bc60a0 100644 --- a/phpBB/styles/subsilver2/template/viewforum_body.html +++ b/phpBB/styles/subsilver2/template/viewforum_body.html @@ -148,7 +148,7 @@ </table> <!-- ENDIF --> - <!-- IF S_IS_POSTABLE or .topicrow --> + <!-- IF not S_DISPLAY_ACTIVE and (S_IS_POSTABLE or .topicrow) --> <table class="tablebg" width="100%" cellspacing="1"> <tr> <td class="cat" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->"> |