From 8287ff9dbcb727d5ad5f1918920f65f6b34530b1 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 21:26:29 +0000 Subject: [PATCH] Fix summaries for new feed functions added in 4.3. * `get_last_build_date_feed()` [32765] * `atom_site_icon()` [32994] * `rss2_site_icon()` [32994] See #32891. git-svn-id: https://develop.svn.wordpress.org/trunk@33224 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/feed.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/feed.php b/src/wp-includes/feed.php index 93a6ddf268..ed859c9c47 100644 --- a/src/wp-includes/feed.php +++ b/src/wp-includes/feed.php @@ -88,14 +88,14 @@ function get_default_feed() { } /** - * Get the timestamp of the most recently modified post from WP_Query + * Gets the timestamp of the most recently modified post from WP_Query. * * If viewing a comment feed, the date of the most recently modified * comment will be returned. * * @since 4.3.0 * - * @return string Date ('Y-m-d H:i:s' for use with mysql2date() ) + * @return string Date ('Y-m-d H:i:s' for use with mysql2date()). */ function get_last_build_date_feed() { global $wp_query, $wpdb; @@ -588,9 +588,11 @@ function prep_atom_text_construct($data) { } /** - * Display Site Icon in atom feeds. + * Displays Site Icon in atom feeds. * * @since 4.3.0 + * + * @see get_site_icon_url() */ function atom_site_icon() { $url = get_site_icon_url( null, 32 ); @@ -600,7 +602,7 @@ function atom_site_icon() { } /** - * Display Site Icon in RSS2. + * Displays Site Icon in RSS2. * * @since 4.3.0 */