Don't double encode
git-svn-id: http://svn.automattic.com/wordpress/trunk@2263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c43b3244bd
commit
7231abe7ea
|
@ -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 != '') {
|
||||
|
|
Loading…
Reference in New Issue