Code Duplication    Length = 4-4 lines in 2 locations

wp-includes/functions.php 2 locations

@@ 1283-1286 (lines=4) @@
1280
 * @param bool $for_comments True for the comment feed, false for normal feed.
1281
 */
1282
function do_feed_rss2( $for_comments ) {
1283
	if ( $for_comments )
1284
		load_template( ABSPATH . WPINC . '/feed-rss2-comments.php' );
1285
	else
1286
		load_template( ABSPATH . WPINC . '/feed-rss2.php' );
1287
}
1288
1289
/**
@@ 1299-1302 (lines=4) @@
1296
 * @param bool $for_comments True for the comment feed, false for normal feed.
1297
 */
1298
function do_feed_atom( $for_comments ) {
1299
	if ($for_comments)
1300
		load_template( ABSPATH . WPINC . '/feed-atom-comments.php');
1301
	else
1302
		load_template( ABSPATH . WPINC . '/feed-atom.php' );
1303
}
1304
1305
/**