From: Andrey Hristov Date: Thu, 22 Jul 1999 14:22:32 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: php-4.0b1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5a07063d21bdf11306d4a25678e17f7261c9e27;p=php *** empty log message *** --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 001fe3e0c0..6ca165694c 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -231,7 +231,7 @@ static pcre* _pcre_get_compiled_regex(char *regex, pcre_extra *extra, int *preg_ *preg_options = 0; /* Parse through the options, setting appropriate flags. Display - a warning if we encounter an unknown option. */ + a warning if we encounter an unknown modifier. */ while (*pp != 0) { switch (*pp++) { /* Perl compatible options */ @@ -255,7 +255,7 @@ static pcre* _pcre_get_compiled_regex(char *regex, pcre_extra *extra, int *preg_ break; default: - zend_error(E_WARNING, "Unknown option '%c'", pp[-1]); + zend_error(E_WARNING, "Unknown modifier '%c'", pp[-1]); efree(pattern); return NULL; }