quitened these stupid php5.2/mb_string warnings

This commit is contained in:
Ralf Becker 2006-12-19 07:34:29 +00:00
parent 61eb991338
commit 33d333f56f

View File

@ -253,7 +253,7 @@ class xajaxResponse
//we need to parse the query part so that the values are rawurlencode()'ed
//can't just use parse_url() cos we could be dealing with a relative URL which
// parse_url() can't deal with.
$queryStart = strpos($sURL, '?', strrpos($sURL, '/'));
$queryStart = strpos($sURL, '?', @strrpos($sURL, '/'));
if ($queryStart !== FALSE)
{
$queryStart++;
@ -539,7 +539,7 @@ class xajaxResponse
$xml = "<cmd";
foreach($aAttributes as $sAttribute => $sValue)
$xml .= " $sAttribute=\"$sValue\"";
if ($sData !== null && !stristr($sData,'<![CDATA['))
if ($sData !== null && !@stristr($sData,'<![CDATA['))
$xml .= "><![CDATA[$sData]]></cmd>";
else if ($sData !== null)
$xml .= ">$sData</cmd>";