You can rearrange the code in news.php to strip HTML first, then trim the subtitle to length (the code currently strips HTML after, leaving short subtitles):

Around line 302 in my news.php, change 2 lines to:

....

All that I've done is to move the strip_tags function so that the substr function operates on plain text.

More...