mirror of
https://github.com/friendica/friendica
synced 2025-02-15 15:34:01 +00:00
21 lines
387 B
PHP
21 lines
387 B
PHP
|
<?php
|
||
|
|
||
|
class SimplePie_First_Item_Permalink_Test_Atom_10_xmlbase_2 extends SimplePie_First_Item_Permalink_Test
|
||
|
{
|
||
|
function data()
|
||
|
{
|
||
|
$this->data =
|
||
|
'<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<entry xml:base="http://example.com/">
|
||
|
<link rel="alternate" href="/alternate"/>
|
||
|
</entry>
|
||
|
</feed>';
|
||
|
}
|
||
|
|
||
|
function expected()
|
||
|
{
|
||
|
$this->expected = 'http://example.com/alternate';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|