stas                                     Thu, 25 Mar 2010 22:30:26 +0000

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

Log:
fix protos

Changed paths:
    U   php/php-src/trunk/ext/intl/resourcebundle/resourcebundle_class.c

Modified: php/php-src/trunk/ext/intl/resourcebundle/resourcebundle_class.c
===================================================================
--- php/php-src/trunk/ext/intl/resourcebundle/resourcebundle_class.c    
2010-03-25 22:22:51 UTC (rev 296824)
+++ php/php-src/trunk/ext/intl/resourcebundle/resourcebundle_class.c    
2010-03-25 22:30:26 UTC (rev 296825)
@@ -126,7 +126,7 @@
 ZEND_END_ARG_INFO()
 /* }}} */

-/* {{{ proto void ResourceBundle::__construct( string $bundlename [, string 
$locale [, bool $fallback = true ]] )
+/* {{{ proto void ResourceBundle::__construct( string $locale [, string 
$bundlename [, bool $fallback = true ]] )
  * ResourceBundle object constructor
  */
 PHP_METHOD( ResourceBundle, __construct )
@@ -136,8 +136,9 @@
 }
 /* }}} */

-/* {{{ proto ResourceBundle ResourceBundle::create( string $bundlename [, 
string $locale [, bool $fallback = true ]] )
-proto ResourceBundle resourcebundle_create( string $bundlename [, string 
$locale [, bool $fallback = true ]] ) */
+/* {{{ proto ResourceBundle ResourceBundle::create( string $locale [, string 
$bundlename [, bool $fallback = true ]] )
+proto ResourceBundle resourcebundle_create( string $locale [, string 
$bundlename [, bool $fallback = true ]] )
+*/
 PHP_FUNCTION( resourcebundle_create )
 {
        object_init_ex( return_value, ResourceBundle_ce_ptr );

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

Reply via email to