diff options
author | Maël Soucaze <maelsoucaze@gmail.com> | 2014-03-15 14:32:06 +0100 |
---|---|---|
committer | Maël Soucaze <maelsoucaze@gmail.com> | 2014-03-15 14:32:26 +0100 |
commit | 23b7671617ef50d39253c3e73b14890fd34b3f75 (patch) | |
tree | 8b369442c50440a78df42a9b8c5b3623c649a151 | |
parent | e1278320a29d1772ccf59d49cae6dbd15227f717 (diff) | |
download | forums-23b7671617ef50d39253c3e73b14890fd34b3f75.tar forums-23b7671617ef50d39253c3e73b14890fd34b3f75.tar.gz forums-23b7671617ef50d39253c3e73b14890fd34b3f75.tar.bz2 forums-23b7671617ef50d39253c3e73b14890fd34b3f75.tar.xz forums-23b7671617ef50d39253c3e73b14890fd34b3f75.zip |
[ticket/12272] Fix hardcoded colons in subforums.
In subforums list, under the parent forum description, there are two
harcoded colons instead of {L_COLON}.
PHPBB3-12272
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index 75646cd894..63d8aba9bb 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -52,7 +52,7 @@ <!-- ENDIF --> <!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS --> <!-- EVENT forumlist_body_subforums_before --> - <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> + <p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}{L_COLON}</strong> <!-- BEGIN subforum --> <a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF --> <!-- END subforum --> |