stas Thu, 25 Mar 2010 19:17:17 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=296799
Log: fix the protos Changed paths: U php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle.c U php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle_class.c Modified: php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle.c 2010-03-25 17:47:33 UTC (rev 296798) +++ php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle.c 2010-03-25 19:17:17 UTC (rev 296799) @@ -1,4 +1,4 @@ -/* + /* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ Modified: php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle_class.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle_class.c 2010-03-25 17:47:33 UTC (rev 296798) +++ php/php-src/branches/PHP_5_3/ext/intl/resourcebundle/resourcebundle_class.c 2010-03-25 19:17:17 UTC (rev 296799) @@ -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