No need to attribute_escape a cleaned url. fixes #8587
git-svn-id: http://svn.automattic.com/wordpress/trunk@11127 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
64e33fdaa8
commit
942d030b1d
|
@ -130,7 +130,7 @@ $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
|
||||||
|
|
||||||
<input type="hidden" name="c" value="<?php echo attr($comment->comment_ID) ?>" />
|
<input type="hidden" name="c" value="<?php echo attr($comment->comment_ID) ?>" />
|
||||||
<input type="hidden" name="p" value="<?php echo attr($comment->comment_post_ID) ?>" />
|
<input type="hidden" name="p" value="<?php echo attr($comment->comment_post_ID) ?>" />
|
||||||
<input name="referredby" type="hidden" id="referredby" value="<?php echo attr(clean_url(stripslashes(wp_get_referer()))); ?>" />
|
<input name="referredby" type="hidden" id="referredby" value="<?php echo clean_url(stripslashes(wp_get_referer())); ?>" />
|
||||||
<?php wp_original_referer_field(true, 'previous'); ?>
|
<?php wp_original_referer_field(true, 'previous'); ?>
|
||||||
<input type="hidden" name="noredir" value="1" />
|
<input type="hidden" name="noredir" value="1" />
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue