Changeset 2441
- Timestamp:
- 09/04/08 22:23:39 (3 months ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/classes/atomhandler.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/classes/atomhandler.php
r2435 r2441 212 212 $item= $xml->addChild( 'entry' ); 213 213 $title= $item->addChild( 'title', htmlspecialchars( sprintf( _t( '%1$s on "%2$s"' ), $comment->name, $comment->post->title ) ) ); 214 $title= $item->addChild( 'title', _t('Comment on ') . $title . _t(' by ') . $comment->name );215 214 216 215 $link= $item->addChild( 'link' ); … … 225 224 $updated= $item->addChild( 'updated', date( 'c', strtotime( $comment->date ) ) ); 226 225 227 $content= $item->addChild( 'content', $co mment->content );226 $content= $item->addChild( 'content', $content ); 228 227 $content->addAttribute( 'type', 'html' ); 229 228 Plugins::act( 'atom_add_comment', $item, $comment );
