浏览代码

Bug warning in case of invalid CDATA

Alexandre Alapetite 11 年之前
父节点
当前提交
c3fd8877c0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/SimplePie/SimplePie/Parser.php

+ 1 - 1
lib/SimplePie/SimplePie/Parser.php

@@ -142,7 +142,7 @@ class SimplePie_Parser
 				$dom = new DOMDocument();
 				$dom->recover = true;
 				$dom->strictErrorChecking = false;
-				$dom->loadXML($data);
+				@$dom->loadXML($data);
 				$this->encoding = $encoding = $dom->encoding = 'UTF-8';
 				$data2 = $dom->saveXML();
 				if (function_exists('mb_convert_encoding'))