Changeset 6131
- Timestamp:
- 06/23/2012 10:58:06 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-classes.php
r5993 r6131 129 129 ); 130 130 131 $args = bp_core_parse_args_array( $old_args_keys, func_get_args() ); 131 $func_args = func_get_args(); 132 $args = bp_core_parse_args_array( $old_args_keys, $func_args ); 132 133 } 133 134 -
trunk/bp-activity/bp-activity-template.php
r5994 r6131 135 135 12 => 'page_arg' 136 136 ); 137 138 $args = bp_core_parse_args_array( $old_args_keys, func_get_args() ); 137 138 $func_args = func_get_args(); 139 $args = bp_core_parse_args_array( $old_args_keys, $func_args ); 139 140 } 140 141 -
trunk/bp-core/bp-core-functions.php
r6093 r6131 979 979 * ); 980 980 * 981 * For the second argument, $func_args, you should just pass func_get_args().981 * For the second argument, $func_args, you should just pass the value of func_get_args(). 982 982 * 983 983 * @since BuddyPress (1.6)
Note: See TracChangeset
for help on using the changeset viewer.