diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-10 13:28:18 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-15 14:26:16 +0200 |
commit | c37a1cd650a5399c4a89543759deedcc7280becd (patch) | |
tree | 3a36dcdb3a20042ce3f37b3b534cbc5fbec7d1d4 /ext/standard/html.c | |
parent | 62c20c662a961f030178a15311bfe37591c10316 (diff) | |
download | php-git-c37a1cd650a5399c4a89543759deedcc7280becd.tar.gz |
Promote a few remaining errors in ext/standard
Closes GH-6110
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r-- | ext/standard/html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c index dfed889875..463e55c255 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -382,7 +382,7 @@ static enum entity_charset determine_charset(const char *charset_hint, zend_bool } if (!quiet) { - php_error_docref(NULL, E_WARNING, "Charset `%s' not supported, assuming utf-8", + php_error_docref(NULL, E_WARNING, "Charset \"%s\" is not supported, assuming UTF-8", charset_hint); } } |