From 7231abe7eade59319191067177c91df6da320bda Mon Sep 17 00:00:00 2001 From: saxmatt Date: Fri, 11 Feb 2005 02:26:05 +0000 Subject: [PATCH] Don't double encode git-svn-id: http://svn.automattic.com/wordpress/trunk@2263 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 != '') {