From 292e5394a4bd39a59206403f36cba73beb2b8cda Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Thu, 12 Nov 2009 02:37:28 +0000 Subject: [PATCH] Some extra XSS protection. Redundant, but we should always escape late! see #11119 git-svn-id: https://develop.svn.wordpress.org/trunk@12169 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/press-this.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/press-this.php b/wp-admin/press-this.php index 30b1bf4778..f32d35a895 100644 --- a/wp-admin/press-this.php +++ b/wp-admin/press-this.php @@ -582,7 +582,7 @@ var photostorage = false; echo '

'; if ( $selection ) _e('via '); - echo "$title.

"; + printf( "%s.

", esc_url( $url ), esc_html( $title ) ); } ?>