diff options
author | Arnout Boks <arnoutboks@gmail.com> | 2017-01-10 21:19:37 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2017-01-10 23:24:34 +0100 |
commit | 07340553a562db2387c9995dce0c84dd9afba97e (patch) | |
tree | fc597a52c590dbec09682f9b481fcc9c38a127a9 /ext/dom/attr.c | |
parent | 291e3f0762cab9e9639e0594aa0ab96359ba2530 (diff) | |
download | php-git-07340553a562db2387c9995dce0c84dd9afba97e.tar.gz |
Fixed bug #61858 (DOMAttr debug info generates E_WARNING)
It seems fair to remove this warning, given that:
* it is not documented in the official documentation
* the $specified property, which has a similar 'not implemented' status,
also does not trigger a warning
* it apparently hinders quite a lot of people during debugging, judging by
the number of votes on the bug
Diffstat (limited to 'ext/dom/attr.c')
-rw-r--r-- | ext/dom/attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/attr.c b/ext/dom/attr.c index 40a10f2f3d..db70029004 100644 --- a/ext/dom/attr.c +++ b/ext/dom/attr.c @@ -213,7 +213,7 @@ Since: DOM Level 3 */ int dom_attr_schema_type_info_read(dom_object *obj, zval *retval) { - php_error_docref(NULL, E_WARNING, "Not yet implemented"); + /* TODO */ ZVAL_NULL(retval); return SUCCESS; } |