Subversion Repositories Applications.projet

Compare Revisions

Ignore whitespace Rev 393 → Rev 394

/trunk/classes/ezmlm-php-2.0/ezmlm.php
233,6 → 233,12
$outstr = preg_replace("/<.*>/", '', $outstr);
$outstr = preg_replace("/[\"']/", '', $outstr);
}
 
$points_sep = explode('.',$outstr);
if(count($points_sep) > 2) {
$outstr = implode('.', array_slice($points_sep,0,count($points_sep) - 2));
$outstr = rtrim($outstr, '.').'...';
}
return trim($outstr);
}