Files
friendica/simplepie/test/feed_title/rss-profile/7.php
Mike Macgirvin 9f7ae0e95f Add simplepie
2010-07-05 03:34:42 -07:00

21 lines
318 B
PHP

<?php
class RSS_Profile_Title_7 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>Nice &#x3C;gorilla&#x3E; what\'s he weigh?</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Nice &lt;gorilla&gt; what\'s he weigh?';
}
}
?>