wp/wp-includes/atomlib.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 22 8c2e4d02f4ef
--- a/wp/wp-includes/atomlib.php	Wed Sep 21 18:19:35 2022 +0200
+++ b/wp/wp-includes/atomlib.php	Tue Sep 27 16:37:53 2022 +0200
@@ -388,10 +388,10 @@
         return false;
     }
 
-    function xml_escape($string)
+    function xml_escape($content)
     {
              return str_replace(array('&','"',"'",'<','>'),
                 array('&amp;','&quot;','&apos;','&lt;','&gt;'),
-                $string );
+                $content );
     }
 }