summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-05-01 18:54:49 +0000
committerFelipe Pena <felipe@php.net>2010-05-01 18:54:49 +0000
commit84c1643644888da1ed9acc1f239d2d5f01232a35 (patch)
tree7f9a0ed6677a4fd204f3cc7ccabe44ef8deb57ad
parent7d716f83734483554e225ad38d992f9ba2cd613f (diff)
downloadphp-git-84c1643644888da1ed9acc1f239d2d5f01232a35.tar.gz
- Fixed bug #51719 (typo in function prototype)
-rw-r--r--Zend/zend_builtin_functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index 7506401df2..5686fb94a6 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -179,7 +179,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_alias, 0, 0, 2)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_trigger_error, 0, 0, 1)
- ZEND_ARG_INFO(0, messsage)
+ ZEND_ARG_INFO(0, message)
ZEND_ARG_INFO(0, error_type)
ZEND_END_ARG_INFO()
@@ -1384,7 +1384,7 @@ ZEND_FUNCTION(get_included_files)
/* }}} */
-/* {{{ proto void trigger_error(string messsage [, int error_type])
+/* {{{ proto void trigger_error(string message [, int error_type])
Generates a user-level error/warning/notice message */
ZEND_FUNCTION(trigger_error)
{