This tweet cut off right before the ampersand and gives this error message:
Warning: Twitee::_parse_status() [function.Twitee--parse-status]: unterminated entity reference Osugi Ren as "shockers": <a href="http://bit.ly/2gU1O">http://bit.ly/2gU1O</a> in /home/myacct/public_html/mydir/systemfolder/modules/twitee/mod.twitee.php on line 433
I ran into the same issue today. I fixed it by replacing this:
$status->text = $this->twitterStatusUrlConverter($status->text);
$status->text = $TYPE->parse_type($status->text, $prefs);
$status->text = $REGX->xss_clean($status->text);
with this:
$text = htmlspecialchars($status->text);
$text = $this->twitterStatusUrlConverter($text);
$text = $TYPE->parse_type($text, $prefs);
$status->text = $REGX->xss_clean($text);
in both the _parse_basic_user and _parse_status functions.
