From 732dda9406cd0e66fc88cc6f3da2ea4b2f2c2ae1 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 31 Aug 2006 17:30:17 +0000 Subject: [PATCH] Fix percent stripping in clean_url. git-svn-id: https://develop.svn.wordpress.org/trunk@4148 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/formatting.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 1be7f1e694..41fd3b92de 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -1037,7 +1037,9 @@ function wp_richedit_pre($text) { function clean_url( $url ) { if ('' == $url) return $url; - $url = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $url); + $url = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $url); + $strip = array('%0d', '%0a'); + $url = str_replace($strip, '', $url); $url = str_replace(';//', '://', $url); $url = (!strstr($url, '://')) ? 'http://'.$url : $url; $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url);