Bug #19891 » 10231.patch
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]);
|
||
}
|