Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/29/2016 09:24:53 PM (10 years ago)
Author:
boonebgorges
Message:

Stop assigning func_get_args() to a variable.

This was a workaround for a syntax limitation in PHP 5.2.

See #7299.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/classes/class-bp-groups-membership-requests-template.php

    r10531 r11363  
    9797                        );
    9898
    99                         $func_args = func_get_args();
    100                         $args      = bp_core_parse_args_array( $old_args_keys, $func_args );
     99                        $args = bp_core_parse_args_array( $old_args_keys, func_get_args() );
    101100                }
    102101
Note: See TracChangeset for help on using the changeset viewer.