You are viewing a plain text version of this content. The canonical link for it is here.
Posted to zeta-issues@incubator.apache.org by "Daniel Fahlke (JIRA)" <ji...@apache.org> on 2010/11/22 21:20:15 UTC

[jira] Created: (ZETACOMP-23) syntaxerror in rss2 feed generation

syntaxerror in rss2 feed generation
-----------------------------------

                 Key: ZETACOMP-23
                 URL: https://issues.apache.org/jira/browse/ZETACOMP-23
             Project: Zeta Components
          Issue Type: Bug
          Components: Feed
            Reporter: Daniel Fahlke
            Priority: Trivial


I found, that the managingEditor tag occurs for every given author. But rss2 allows it only once.
The ezcFeed class even document it.

 * @property array(ezcFeedPersonElement) $author
 *           Author(s) of the feed. Equivalents:
 *           ATOM-author (required, multiple),
 *           RSS1-none,
 *           RSS2-managingEditor (optional, recommended, single)

But the ezcFeedRss2 class do

case 'author':
                        foreach ( $this->author as $person )
                        {
                            $this->generatePerson( $person, $this->channel, 'managingEditor' );
                        } 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.