fixed problem pointed out by lukasz.pilorz(at)allegro.pl

This commit is contained in:
Ralf Becker 2008-03-19 11:09:27 +00:00
parent b98808f87f
commit af72b6ea54

View File

@ -513,13 +513,12 @@
###############################################################################
function _bad_protocol_once($string)
{
return preg_replace(
'/^((&[^;]*;|[\sA-Za-z0-9])*)'.
'(:|:|&#[Xx]3[Aa];)\s*/e',
'\$this->_bad_protocol_once2("\\1")',
$string
);
return $string;
$string2 = preg_split('/:|:|:/i', $string, 2);
if(isset($string2[1]) && !preg_match('%/\?%',$string2[0]))
{
return $this->_bad_protocol_once2($string2[0]).trim($string2[1]);
}
return '';
} # function _bad_protocol_once