felipe                                   Sat, 01 May 2010 18:54:49 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=298842

Log:
- Fixed bug #51719 (typo in function prototype)

Bug: http://bugs.php.net/51719 (Open) typo in function prototype
      
Changed paths:
    U   php/php-src/branches/PHP_5_2/Zend/zend_builtin_functions.c
    U   php/php-src/branches/PHP_5_3/Zend/zend_builtin_functions.c
    U   php/php-src/trunk/Zend/zend_builtin_functions.c

Modified: php/php-src/branches/PHP_5_2/Zend/zend_builtin_functions.c
===================================================================
--- php/php-src/branches/PHP_5_2/Zend/zend_builtin_functions.c  2010-05-01 
18:30:38 UTC (rev 298841)
+++ php/php-src/branches/PHP_5_2/Zend/zend_builtin_functions.c  2010-05-01 
18:54:49 UTC (rev 298842)
@@ -1148,7 +1148,7 @@
 /* }}} */


-/* {{{ 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)
 {

Modified: php/php-src/branches/PHP_5_3/Zend/zend_builtin_functions.c
===================================================================
--- php/php-src/branches/PHP_5_3/Zend/zend_builtin_functions.c  2010-05-01 
18:30:38 UTC (rev 298841)
+++ php/php-src/branches/PHP_5_3/Zend/zend_builtin_functions.c  2010-05-01 
18:54:49 UTC (rev 298842)
@@ -179,7 +179,7 @@
 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 @@
 /* }}} */


-/* {{{ 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)
 {

Modified: php/php-src/trunk/Zend/zend_builtin_functions.c
===================================================================
--- php/php-src/trunk/Zend/zend_builtin_functions.c     2010-05-01 18:30:38 UTC 
(rev 298841)
+++ php/php-src/trunk/Zend/zend_builtin_functions.c     2010-05-01 18:54:49 UTC 
(rev 298842)
@@ -179,7 +179,7 @@
 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 @@
 /* }}} */


-/* {{{ 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)
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to