Browse Source

[AtomFormat] Use XML encoding instead of CDATA section

logmanoriginal 7 years ago
parent
commit
8b468e94a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      formats/AtomFormat.php

+ 1 - 1
formats/AtomFormat.php

@@ -28,7 +28,7 @@ class AtomFormat extends FormatAbstract{
             $entryUri = is_null($data->uri) ? '' : $this->xml_encode($data->uri);
             $entryTimestamp = is_null($data->timestamp) ? '' : $this->xml_encode(date(DATE_ATOM, $data->timestamp));
             // We prevent content from closing the CDATA too early.
-            $entryContent = is_null($data->content) ? '' : '<![CDATA[' . $this->sanitizeHtml(str_replace(']]>','',$data->content)) . ']]>';
+            $entryContent = is_null($data->content) ? '' : $this->xml_encode($this->sanitizeHtml($data->content));
 
             $entries .= <<<EOD