diff options
author | Felipe Pena <felipe@php.net> | 2010-05-01 18:54:49 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-05-01 18:54:49 +0000 |
commit | 2b0464c3a92521c49013c1bcd36bc8c094d64a76 (patch) | |
tree | 67e96ab5d24cbe9be0ab5e957d25df96d8f7b01d /Zend/zend_builtin_functions.c | |
parent | b373d8e184f9e5483213eff81c6b28c46f3aa933 (diff) | |
download | php-git-2b0464c3a92521c49013c1bcd36bc8c094d64a76.tar.gz |
- Fixed bug #51719 (typo in function prototype)
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 0807341f52..a56a823f7c 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) { |