From a5a07063d21bdf11306d4a25678e17f7261c9e27 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Thu, 22 Jul 1999 14:22:32 +0000 Subject: *** empty log message *** --- ext/pcre/php_pcre.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- cgit v1.2.1