Don't double encode

git-svn-id: http://svn.automattic.com/wordpress/trunk@2263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2005-02-11 02:26:05 +00:00
parent c43b3244bd
commit 7231abe7ea
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ function get_links($category = -1, $before = '', $after = '<br />',
}
$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 != '') {