Browse Source

Merge pull request #428 from mro/feature/xml_escape

CDATA considered harmful.
LogMANOriginal 7 years ago
parent
commit
fdf98041e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      formats/AtomFormat.php

+ 1 - 1
formats/AtomFormat.php

@@ -35,7 +35,7 @@ class AtomFormat extends FormatAbstract{
 		<author>
 			<name>{$entryAuthor}</name>
 		</author>
-		<title type="html"><![CDATA[{$entryTitle}]]></title>
+		<title type="html">{$entryTitle}</title>
 		<link rel="alternate" type="text/html" href="{$entryUri}" />
 		<id>{$entryUri}</id>
 		<updated>{$entryTimestamp}</updated>