From: Pierre Joye Date: Fri, 27 Oct 2006 12:13:28 +0000 (+0000) Subject: - default filter is not string (only comment fix for dave :) X-Git-Tag: RELEASE_1_0_0RC1~1192 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8744ca86fa403e7aae8f89cf9c482735c0f89c6;p=php - default filter is not string (only comment fix for dave :) --- diff --git a/ext/filter/filter.c b/ext/filter/filter.c index 0a01500af1..f6bfc7329e 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -123,7 +123,7 @@ static PHP_INI_MH(UpdateDefaultFilter) /* {{{ */ return SUCCESS; } } - /* Fallback to "string" filter */ + /* Fallback to the default filter */ IF_G(default_filter) = FILTER_DEFAULT; return SUCCESS; }