Tweak for news items when trim length is enabled

I did a little tweak to the news.php file for when my news blocks are cut down by the "trim length" option. Makes it a little more obvious to users that there is more to the article than just the standard "..." added to the end of the message, and gives them a link to the message topic itself (similar to clicking the comments link)
in includes/news.php find:
replace with] $article['post_abstract'] = $this->parseMessage( $article['post_abstract'] . '...<br><br><i><a> ...' . $lang['Read_More'] . '<img></a></i>', $article['bbcode_uid']);
[/code]
It adds the ... at the end of the message, then drops down and adds a "...read more" that links to the message in the forum itself.
The standard "read more" button also remains on the bottom-right of the frame, but that links to a news view without the ability to reply (which I wanted).
N.
in includes/news.php find:
- Code: Select all
                    $article['post_abstract']  =  $this->parseMessage(  $article['post_abstract']  .  '  ...  ',  $article['bbcode_uid']  ); 
replace with] $article['post_abstract'] = $this->parseMessage( $article['post_abstract'] . '...<br><br><i><a> ...' . $lang['Read_More'] . '<img></a></i>', $article['bbcode_uid']);
[/code]
It adds the ... at the end of the message, then drops down and adds a "...read more" that links to the message in the forum itself.
The standard "read more" button also remains on the bottom-right of the frame, but that links to a news view without the ability to reply (which I wanted).
N.