From 1167c1a26cdf385439405926effae753048d1d8e Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 11 Feb 2005 02:26:05 +0000 Subject: [PATCH] Don't double encode git-svn-id: https://develop.svn.wordpress.org/trunk@2263 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 97b971216c..8c95ae1a70 100644 --- a/wp-includes/links.php +++ b/wp-includes/links.php @@ -176,7 +176,7 @@ function get_links($category = -1, $before = '', $after = '
', } $the_link = '#'; if (($row->link_url != null) && ($row->link_url != '')) { - $the_link = wp_specialchars($row->link_url); + $the_link = $row->link_url; } $rel = $row->link_rel; if ($rel != '') {