Index: t3lib/class.t3lib_cs.php =================================================================== --- t3lib/class.t3lib_cs.php (revision 6485) +++ t3lib/class.t3lib_cs.php (working copy) @@ -1473,7 +1473,7 @@ * @see mb_strlen(), mb_substr() */ protected function cropMbstring($charset, $string, $len, $crop = '') { - if (intval($len) == 0 || mb_strlen($string) < $len) { + if (intval($len) === 0 || mb_strlen($string, $charset) <= abs($len)) { return $string; }