From: Johannes Schlüter Date: Tue, 1 May 2007 08:35:57 +0000 (+0000) Subject: - Fix test X-Git-Tag: RELEASE_1_2_0~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6d63964835e818708e6b1d262eceebda79b7336;p=php - Fix test --- diff --git a/ext/dom/tests/dom_xinclude.phpt b/ext/dom/tests/dom_xinclude.phpt index f9a3dd761e..427d2c2164 100644 --- a/ext/dom/tests/dom_xinclude.phpt +++ b/ext/dom/tests/dom_xinclude.phpt @@ -12,7 +12,7 @@ $dom = new domdocument; $data = file_get_contents(dirname(__FILE__)."/xinclude.xml"); $data = str_replace('compress.zlib://ext/dom/tests/','compress.zlib://'.dirname(__FILE__).'/', $data); -$dom->loadXML($data); +$dom->loadXML((binary)$data); $dom->xinclude(); print $dom->saveXML()."\n";