From e19e0a6591ba63e2101331ef5281251f4b630540 Mon Sep 17 00:00:00 2001 From: Ron Chmara Date: Sat, 30 Sep 2000 20:07:03 +0000 Subject: [PATCH] Fixed another example per errata. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@33204 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/pcre.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/pcre.xml b/functions/pcre.xml index dc77d07d0e..c04ec0b232 100644 --- a/functions/pcre.xml +++ b/functions/pcre.xml @@ -395,7 +395,7 @@ This would capitalize all HTML tags in the input text. $search = array ("'<script[^>]*?>.*?</script>'si", // Strip out javascript "'<[\/\!]*?[^<>]*?>'si", // Strip out html tags "'([\r\n])[\s]+'", // Strip out white space - "'&(quote|#34);'i", // Replace html entities + "'&(quot|#34);'i", // Replace html entities "'&(amp|#38);'i", "'&(lt|#60);'i", "'&(gt|#62);'i",