mirror of
git://develop.git.wordpress.org/
synced 2025-02-25 09:03:09 +01:00
Don't double encode
git-svn-id: https://develop.svn.wordpress.org/trunk@2263 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1f344fc951
commit
1167c1a26c
@ -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…
x
Reference in New Issue
Block a user