summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>1999-07-22 14:22:32 +0000
committerAndrey Hristov <andrey@php.net>1999-07-22 14:22:32 +0000
commita5a07063d21bdf11306d4a25678e17f7261c9e27 (patch)
tree4b3106f29e839df25fdd097907ec5cf342905f00
parent925d48dae63613c835214db7366d3313478ef227 (diff)
downloadphp-git-a5a07063d21bdf11306d4a25678e17f7261c9e27.tar.gz
*** empty log message ***
-rw-r--r--ext/pcre/php_pcre.c4
1 files 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;
}