From c8b7b7e47bcabd2906b780925dab74f8ba3313e2 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 20 Jun 2005 01:40:52 +0000 Subject: [PATCH] Return output of get_links() when calling from wp_get_links(). Props: Kafkaesqui fixes #1437 git-svn-id: https://develop.svn.wordpress.org/trunk@2656 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/links.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/links.php b/wp-includes/links.php index 3723d4c2a4..52292ae35c 100644 --- a/wp-includes/links.php +++ b/wp-includes/links.php @@ -113,7 +113,7 @@ function wp_get_links($args = '') { if (! isset($show_updated)) $show_updated = 1; if (! isset($echo)) $echo = true; - get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated, $echo); + return get_links($category, $before, $after, $between, $show_images, $orderby, $show_description, $show_rating, $limit, $show_updated, $echo); } } // end wp_get_links