diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 516c1eb1b5..a4cc7e2b2c 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -2202,10 +2202,10 @@ function do_trackbacks($post_id) { } if ( empty($post->post_excerpt) ) { - /** This filter is documented in wp-admin/post-template.php */ + /** This filter is documented in wp-includes/post-template.php */ $excerpt = apply_filters( 'the_content', $post->post_content, $post->ID ); } else { - /** This filter is documented in wp-admin/post-template.php */ + /** This filter is documented in wp-includes/post-template.php */ $excerpt = apply_filters( 'the_excerpt', $post->post_excerpt ); } diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 972e711ff8..560dc61ef7 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -184,7 +184,7 @@ function get_the_content_feed($feed_type = null) { if ( !$feed_type ) $feed_type = get_default_feed(); - /** This filter is documented in wp-admin/post-template.php */ + /** This filter is documented in wp-includes/post-template.php */ $content = apply_filters( 'the_content', get_the_content() ); $content = str_replace(']]>', ']]>', $content); /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 1cb15f8ec7..19e257acff 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.0-beta3-20140811'; +$wp_version = '4.0-beta3-20140812'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.