mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Bug #20746. Renamed aggregation_info() to aggregate_info() per naming conventions and created alias for BC.
This commit is contained in:
parent
49a99a98f4
commit
ad65d01cbe
3 changed files with 4 additions and 3 deletions
|
@ -536,7 +536,7 @@ PHP_FUNCTION(aggregate_properties_by_regexp)
|
||||||
|
|
||||||
/* {{{ proto array aggregation_info(object obj)
|
/* {{{ proto array aggregation_info(object obj)
|
||||||
*/
|
*/
|
||||||
PHP_FUNCTION(aggregation_info)
|
PHP_FUNCTION(aggregate_info)
|
||||||
{
|
{
|
||||||
zval *obj;
|
zval *obj;
|
||||||
aggregation_info *aggr_info;
|
aggregation_info *aggr_info;
|
||||||
|
|
|
@ -46,6 +46,6 @@ PHP_FUNCTION(aggregate_properties_by_list);
|
||||||
PHP_FUNCTION(aggregate_properties_by_regexp);
|
PHP_FUNCTION(aggregate_properties_by_regexp);
|
||||||
PHP_FUNCTION(aggregate);
|
PHP_FUNCTION(aggregate);
|
||||||
PHP_FUNCTION(deaggregate);
|
PHP_FUNCTION(deaggregate);
|
||||||
PHP_FUNCTION(aggregation_info);
|
PHP_FUNCTION(aggregate_info);
|
||||||
|
|
||||||
#endif /* AGGREGATION_H */
|
#endif /* AGGREGATION_H */
|
||||||
|
|
|
@ -871,7 +871,8 @@ function_entry basic_functions[] = {
|
||||||
PHP_FE(aggregate_properties_by_regexp, first_arg_force_ref)
|
PHP_FE(aggregate_properties_by_regexp, first_arg_force_ref)
|
||||||
#endif
|
#endif
|
||||||
PHP_FE(deaggregate, first_arg_force_ref)
|
PHP_FE(deaggregate, first_arg_force_ref)
|
||||||
PHP_FE(aggregation_info, first_arg_force_ref)
|
PHP_FE(aggregate_info, first_arg_force_ref)
|
||||||
|
PHP_FALIAS(aggregation_info, aggregate_info, first_arg_force_ref)
|
||||||
|
|
||||||
PHP_FE(output_add_rewrite_var, NULL)
|
PHP_FE(output_add_rewrite_var, NULL)
|
||||||
PHP_FE(output_reset_rewrite_vars, NULL)
|
PHP_FE(output_reset_rewrite_vars, NULL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue