]> granicus.if.org Git - php/commitdiff
- default filter is not string (only comment fix for dave :)
authorPierre Joye <pajoye@php.net>
Fri, 27 Oct 2006 12:13:28 +0000 (12:13 +0000)
committerPierre Joye <pajoye@php.net>
Fri, 27 Oct 2006 12:13:28 +0000 (12:13 +0000)
ext/filter/filter.c

index 0a01500af10b891f8aa30e3f109202ce4fc7c3f7..f6bfc7329e89033d683fdf79d8fbc8c99a15d615 100644 (file)
@@ -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;
 }