Explorar o código

Escape ']]>' (closing CDATA tag) when exporting with import_export plugin

Jeffrey Tolar %!s(int64=11) %!d(string=hai) anos
pai
achega
c541d3a57e
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      plugins/import_export/init.php

+ 1 - 0
plugins/import_export/init.php

@@ -162,6 +162,7 @@ class Import_Export extends Plugin implements IHandler {
 					fputs($fp, "<article>");
 
 					foreach ($line as $k => $v) {
+						$v = str_replace("]]>", "]]]]><![CDATA[>", $v);
 						fputs($fp, "<$k><![CDATA[$v]]></$k>");
 					}