diff options
| author | Rahul R <rahulr92@gmail.com> | 2012-04-08 22:52:49 +0530 |
|---|---|---|
| committer | Rahul R <rahulr92@gmail.com> | 2012-04-08 22:52:49 +0530 |
| commit | 2dec700aabcb8b5bebf707b41378ede61512e745 (patch) | |
| tree | 55992445c7d625c4a725356472631083de147a0f /phpBB/includes | |
| parent | dd3b8e74b33da4dabb60001c2bffa5d8b2cec236 (diff) | |
| download | forums-2dec700aabcb8b5bebf707b41378ede61512e745.tar forums-2dec700aabcb8b5bebf707b41378ede61512e745.tar.gz forums-2dec700aabcb8b5bebf707b41378ede61512e745.tar.bz2 forums-2dec700aabcb8b5bebf707b41378ede61512e745.tar.xz forums-2dec700aabcb8b5bebf707b41378ede61512e745.zip | |
[ticket/10650] Added ellipsis to language file
Added ELLIPSIS to language file common.php and also corrected
language explanation of ACP option.
PHPBB3-10650
Diffstat (limited to 'phpBB/includes')
| -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 fbb6d65b92..138749d2db 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -397,7 +397,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod if ($row['forum_last_post_id']) { $last_post_subject = $row['forum_last_post_subject']; - $last_post_subject_truncated = truncate_string($last_post_subject, 30, 255 ,false, '…'); + $last_post_subject_truncated = truncate_string($last_post_subject, 30, 255 ,false, $user->lang['ELLIPSIS']); $last_post_time = $user->format_date($row['forum_last_post_time']); $last_post_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id_last_post'] . '&p=' . $row['forum_last_post_id']) . '#p' . $row['forum_last_post_id']; } |
