Suggest trimming 'last topic title' string length before displaying:

function short_title($str, $limit)
{
     return strlen($str) > $limit ? substr($str, 0, $limit - 3) . '...' : $str;
}

Comments

michelle’s picture

Status: Active » Fixed

I took care of this when I redid the last topics bit with some new code from LasseP.

Michelle

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.