diff options
author | Maël Soucaze <maelsoucaze@gmail.com> | 2014-03-15 14:25:11 +0100 |
---|---|---|
committer | Maël Soucaze <maelsoucaze@gmail.com> | 2014-03-15 14:25:11 +0100 |
commit | e1278320a29d1772ccf59d49cae6dbd15227f717 (patch) | |
tree | ff09ba78a86b54708d7697aa6488218a52913602 /phpBB/includes/functions_display.php | |
parent | eafba554fd3bf5c6898433d6cd53dc0a5c2e3637 (diff) | |
download | forums-e1278320a29d1772ccf59d49cae6dbd15227f717.tar forums-e1278320a29d1772ccf59d49cae6dbd15227f717.tar.gz forums-e1278320a29d1772ccf59d49cae6dbd15227f717.tar.bz2 forums-e1278320a29d1772ccf59d49cae6dbd15227f717.tar.xz forums-e1278320a29d1772ccf59d49cae6dbd15227f717.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
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 05313e849d..cd2c9e5ae6 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -441,7 +441,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod } } - $l_subforums = (sizeof($subforums[$forum_id]) == 1) ? $user->lang['SUBFORUM'] . ': ' : $user->lang['SUBFORUMS'] . ': '; + $l_subforums = (sizeof($subforums[$forum_id]) == 1) ? $user->lang['SUBFORUM'] : $user->lang['SUBFORUMS']; $folder_image = ($forum_unread) ? 'forum_unread_subforum' : 'forum_read_subforum'; } else |