From a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 24 May 2009 17:39:35 +0000 Subject: - Patch #471070 by stella: millions of code style fixes. --- includes/unicode.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/unicode.inc') diff --git a/includes/unicode.inc b/includes/unicode.inc index 8c2f64970..da4a37377 100644 --- a/includes/unicode.inc +++ b/includes/unicode.inc @@ -333,9 +333,9 @@ function decode_entities($text, $exclude = array()) { // Flip the exclude list so that we can do quick lookups later. $exclude = array_flip($exclude); - // Use a regexp to select all entities in one pass, to avoid decoding + // Use a regexp to select all entities in one pass, to avoid decoding // double-escaped entities twice. The PREG_REPLACE_EVAL modifier 'e' is - // being used to allow for a callback (see + // being used to allow for a callback (see // http://php.net/manual/en/reference.pcre.pattern.modifiers). return preg_replace('/&(#x?)?([A-Za-z0-9]+);/e', '_decode_entities("$1", "$2", "$0", $html_entities, $exclude)', $text); } -- cgit v1.2.3