]> granicus.if.org Git - php/commitdiff
- Fixed bug #51719 (typo in function prototype)
authorFelipe Pena <felipe@php.net>
Sat, 1 May 2010 18:54:49 +0000 (18:54 +0000)
committerFelipe Pena <felipe@php.net>
Sat, 1 May 2010 18:54:49 +0000 (18:54 +0000)
Zend/zend_builtin_functions.c

index 0807341f527fcd275d066085080a40d51d46613b..a56a823f7c4743c2b0480d996d8070847bb0ec07 100644 (file)
@@ -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)
 {