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.

Built from https://develop.svn.wordpress.org/trunk@33224


git-svn-id: http://core.svn.wordpress.org/trunk@33196 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-07-13 21:27:24 +00:00
parent 536cdddbcd
commit 21632885c7
2 changed files with 7 additions and 5 deletions

View File

@ -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
*/

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta2-33223';
$wp_version = '4.3-beta2-33224';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.