Index: t3lib/class.t3lib_div.php =================================================================== --- t3lib/class.t3lib_div.php (revision 7044) +++ t3lib/class.t3lib_div.php (working copy) @@ -1669,11 +1669,7 @@ */ public static function revExplode($delim, $string, $count=0) { $temp = explode($delim,strrev($string),$count); - foreach ($temp as &$val) { - $val = strrev($val); - } - $temp = array_reverse($temp); - reset($temp); + array_walk($temp, 'strrev'); return $temp; }