Ticket #266: atomhandler.php.patch
| File atomhandler.php.patch, 0.9 kB (added by dmondark, 7 months ago) |
|---|
-
system/classes/atomhandler.php
357 357 $entry_title= $xml->addChild( 'title', $title ); 358 358 359 359 $entry_author= $xml->addChild( 'author' ); 360 $author_name= $entry_author->addChild( 'name', $user-> username );360 $author_name= $entry_author->addChild( 'name', $user->displayname ); 361 361 362 362 $entry_link= $xml->addChild( 'link' ); 363 363 $entry_link->addAttribute( 'rel', 'alternate' ); … … 578 578 $entry_link->addAttribute( 'href', URL::get( 'atom_entry', "slug={$post->slug}" ) ); 579 579 580 580 $entry_author= $feed_entry->addChild( 'author' ); 581 $author_name= $entry_author->addChild( 'name', $user-> username );581 $author_name= $entry_author->addChild( 'name', $user->displayname ); 582 582 583 583 $entry_id= $feed_entry->addChild( 'id', $post->guid ); 584 584
