diff options
author | Rahul R <rahulr92@gmail.com> | 2012-04-03 21:36:26 +0530 |
---|---|---|
committer | Rahul R <rahulr92@gmail.com> | 2012-04-08 10:33:30 +0530 |
commit | 720fc46807f92364321bcb26291eafea1688c5ca (patch) | |
tree | 2393defdeb221c6cc3dce0ccbba7054359c4608d /phpBB | |
parent | bc21dec9c07a9566d60d775b2c25d8065b503764 (diff) | |
download | forums-720fc46807f92364321bcb26291eafea1688c5ca.tar forums-720fc46807f92364321bcb26291eafea1688c5ca.tar.gz forums-720fc46807f92364321bcb26291eafea1688c5ca.tar.bz2 forums-720fc46807f92364321bcb26291eafea1688c5ca.tar.xz forums-720fc46807f92364321bcb26291eafea1688c5ca.zip |
[ticket/10650] Cropped subject and inserted newline
The subject being displayed in the forum list have been
shortened to 30 characters. Also it is now being shown
in a separate line.
PHPBB3-10650
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_display.php | 5 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 9b80763ee4..b331ed7d71 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -397,6 +397,11 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod if ($row['forum_last_post_id']) { $last_post_subject = $row['forum_last_post_subject']; + if (strlen($last_post_subject) > 30) + { + $last_post_subject = substr($last_post_subject, 0, 30); + $last_post_subject .= '...'; + } $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']; } diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index 17454ed330..68df81932a 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -46,7 +46,7 @@ <!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a><!-- ENDIF --> <!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn> <!-- IF forumrow.S_DISPLAY_SUBJECT --> - <a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a> + <a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a></br> <!-- ENDIF --> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} <!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{forumrow.LAST_POST_TIME}<!-- ELSE -->{L_NO_POSTS}<br /> <!-- ENDIF --></span> |