Fix send_to_editor escaping. Props Glotzfisch. fixes #6898 for 2.5

git-svn-id: http://svn.automattic.com/wordpress/branches/2.5@7875 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-05-02 17:26:30 +00:00
parent 00ecaa2069
commit af2a4fc884
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ function get_image_send_to_editor($id, $alt, $title, $align, $url='', $rel = fal
$rel = $rel ? ' rel="attachment wp-att-'.attribute_escape($id).'"' : '';
if ( $url )
$html = "<a href='".attribute_escape($url)."'$rel>$html</a>";
$html = '<a href="' . clean_url($url) . "\"$rel>$html</a>";
$html = apply_filters( 'image_send_to_editor', $html, $id, $alt, $title, $align, $url, $size );