From: Derick Rethans Date: Fri, 18 Nov 2005 09:17:59 +0000 (+0000) Subject: - Fixed default so that it does not even encode quotes. X-Git-Tag: RELEASE_0_9_3~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccbf79462f1cab91730ad5fa519ae1c6847ecaff;p=php - Fixed default so that it does not even encode quotes. --- diff --git a/ext/filter/filter.c b/ext/filter/filter.c index 61a6f5fd6d..e54c3105b2 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -131,7 +131,7 @@ static PHP_INI_MH(UpdateDefaultFilter) static PHP_INI_MH(OnUpdateFlags) { if (!new_value) { - IF_G(default_filter_flags) = 0; + IF_G(default_filter_flags) = FILTER_FLAG_NO_ENCODE_QUOTES; } else { IF_G(default_filter_flags) = atoi(new_value); }