htmly/vendor/suin/php-rss-writer/Source/Suin/RSSWriter/SimpleXMLElement.php
Danang Probo Sayekti 643b3be88d Initial commit
Yay! HTMLy was born today.
2014-01-01 21:56:22 +07:00

16 lines
326 B
PHP

<?php
namespace Suin\RSSWriter;
class SimpleXMLElement extends \SimpleXMLElement
{
public function addChild($name, $value = null, $namespace = null)
{
if ( $value !== null and is_string($value) === true )
{
$value = str_replace('&', '&amp;', $value);
}
return parent::addChild($name, $value, $namespace);
}
}