소스 검색

Minor quotes

Alexandre Alapetite 9 년 전
부모
커밋
2c92860310
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/lib_opml.php

+ 1 - 1
lib/lib_opml.php

@@ -131,7 +131,7 @@ function preprocessing_categories($doc) {
 	$outline_categories = [];
 	$body = $doc->getElementsByTagName('body')->item(0);
 	$xpath = new DOMXpath($doc);
-	$outlines = $xpath->query("/opml/body/outline[@category]");
+	$outlines = $xpath->query('/opml/body/outline[@category]');
 	foreach ($outlines as $outline) {
 		$category = trim($outline->getAttribute('category'));
 		if ($category != '') {