Opened 16 years ago
Closed 16 years ago
#12156 closed defect (bug) (fixed)
rss_update_frequency FILTER
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.9.2 | Priority: | normal |
Severity: | normal | Version: | 2.9.1 |
Component: | Feeds | Keywords: | has-patch |
Focuses: | Cc: |
Description
In "wp-includes/feed-rss2.php" we have 2 filters:
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
<sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
but in "wp-includes/feed-rdf.php" we have only 1 filter:
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
This patch addes the "rss_update_frequency" filter to feed-rdf.php file.
Attachments (1)
Change History (2)
Note: See
TracTickets for help on using
tickets.
(In [13002]) Add missing filter to sy:updateFrequency in RDF feed. Props ramiy. Fixes #12156