forked from extern/egroupware
fix for the problem, that allowed attribute values where stripped, due to the security bugfix
This commit is contained in:
parent
b5d3888f74
commit
6dd130a1f3
@ -517,6 +517,13 @@
|
|||||||
if(isset($string2[1]) && !preg_match('%/\?%',$string2[0]))
|
if(isset($string2[1]) && !preg_match('%/\?%',$string2[0]))
|
||||||
{
|
{
|
||||||
return $this->_bad_protocol_once2($string2[0]).trim($string2[1]);
|
return $this->_bad_protocol_once2($string2[0]).trim($string2[1]);
|
||||||
|
} else {
|
||||||
|
if (!isset($string2[1]))
|
||||||
|
{
|
||||||
|
return $string2[0];
|
||||||
|
} else {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
} # function _bad_protocol_once
|
} # function _bad_protocol_once
|
||||||
|
Loading…
Reference in New Issue
Block a user