diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-10 19:50:41 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-11 11:59:04 +0200 |
commit | f293e6b92003d02fe7db81861500e8ff8fb771c4 (patch) | |
tree | d64f36e38fec8c61202542c2b627ebda31d63658 /ext/session/php_session.h | |
parent | c98d47696f5e459e6a3efdfd7034357208284b84 (diff) | |
download | php-git-f293e6b92003d02fe7db81861500e8ff8fb771c4.tar.gz |
Clean up ext/session errors
Closes GH-6111
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 73f8bf31c8..c365975fb5 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -291,7 +291,7 @@ PHPAPI int php_session_reset_id(void); HashTable *_ht = Z_ARRVAL_P(Z_REFVAL(PS(http_session_vars))); \ ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \ if (key == NULL) { \ - php_error_docref(NULL, E_NOTICE, \ + php_error_docref(NULL, E_WARNING, \ "Skipping numeric key " ZEND_LONG_FMT, num_key);\ continue; \ } \ |