diff options
| author | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-07-21 22:42:44 -0500 |
|---|---|---|
| committer | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-07-21 22:42:44 -0500 |
| commit | c284ffade9bce9da06f8d4bc0d2344c09d2d6223 (patch) | |
| tree | 2a61cc8475690b02f229a9ed7d25c91adea3747c | |
| parent | 16c95b4f8394e65faa34380640c892b1f99be1ed (diff) | |
| download | forums-c284ffade9bce9da06f8d4bc0d2344c09d2d6223.tar forums-c284ffade9bce9da06f8d4bc0d2344c09d2d6223.tar.gz forums-c284ffade9bce9da06f8d4bc0d2344c09d2d6223.tar.bz2 forums-c284ffade9bce9da06f8d4bc0d2344c09d2d6223.tar.xz forums-c284ffade9bce9da06f8d4bc0d2344c09d2d6223.zip | |
[ticket/9722] Adjust "New Topic" title attribute for consistency in prosilver
Title attribute was being applied to a <div> at the top of the page and to an
<a> at the bottom of the page. Now both being applied to the <div>.
PHPBB3-9722
| -rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index 309375c269..12073a39d2 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -39,7 +39,7 @@ <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO --> <div class="buttons"> - <div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div> + <div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div> </div> <!-- ENDIF --> |
