Project

General

Profile

Bug #19891 » 10231.patch

Administrator Admin, 2009-01-22 18:08

View differences:

class.t3lib_div.php (working copy)
$tag_tmp = trim(substr($tag_tmp,1)); // Removes = chars.
} else {
// There are '' around the value. We look for the next ' ' or '>'
$reg = split('[[:space:]=]',$tag_tmp,2);
$reg = preg_split('/[[:space:]=]/',$tag_tmp,2);
$value[] = trim($reg[0]);
$tag_tmp = trim(substr($tag_tmp,strlen($reg[0]),1).$reg[1]);
}
(1-1/2)