1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10650] Added ellipsis to language file

Added ELLIPSIS to language file common.php and also corrected
language explanation of ACP option.

PHPBB3-10650
This commit is contained in:
Rahul R
2012-04-08 22:52:49 +05:30
parent dd3b8e74b3
commit 2dec700aab
3 changed files with 3 additions and 2 deletions

View File

@@ -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'];
}