summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2008-02-23 17:06:22 +0000
committerMarcus Boerger <helly@php.net>2008-02-23 17:06:22 +0000
commitd3e50265643fc59c2b5c99ef4ac79e758a6d9839 (patch)
treed8e4f0da41e03fd9e59892e12836ed81130a65fe /Zend/zend_builtin_functions.c
parent6c5041979c9b0f9f05ac92427da53b60f6f6e7c3 (diff)
downloadphp-git-d3e50265643fc59c2b5c99ef4ac79e758a6d9839.tar.gz
- MFH Add E_DEPRECATED (Lars Strojny, Felipe Pena, Marcus)
[DOC] Finally added deprecation messages
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r--Zend/zend_builtin_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index c30163a0b0..2085435e08 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -744,7 +744,7 @@ ZEND_FUNCTION(is_subclass_of)
Returns true if the object is of this class or has this class as one of its parents */
ZEND_FUNCTION(is_a)
{
- zend_error(E_STRICT, "is_a(): Deprecated. Please use the instanceof operator");
+ zend_error(E_DEPRECATED, "is_a(): Deprecated. Please use the instanceof operator");
is_a_impl(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
/* }}} */