aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorRahul R <rahulr92@gmail.com>2012-04-08 22:52:49 +0530
committerRahul R <rahulr92@gmail.com>2012-04-08 22:52:49 +0530
commit2dec700aabcb8b5bebf707b41378ede61512e745 (patch)
tree55992445c7d625c4a725356472631083de147a0f /phpBB/includes
parentdd3b8e74b33da4dabb60001c2bffa5d8b2cec236 (diff)
downloadforums-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.php2
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, '&#133;');
+ $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'] . '&amp;p=' . $row['forum_last_post_id']) . '#p' . $row['forum_last_post_id'];
}