Changeset 46131 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 09/15/2019 11:11:14 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/media.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r45934 r46131 521 521 * @param mixed ...$args Optional additional parameters to pass to the callback function when it's called. 522 522 */ 523 function wp_iframe( $content_func ) {523 function wp_iframe( $content_func, ...$args ) { 524 524 _wp_admin_html_begin(); 525 525 ?> … … 607 607 <?php 608 608 609 $args = func_get_args();610 $args = array_slice( $args, 1 );611 609 call_user_func_array( $content_func, $args ); 612 610
Note: See TracChangeset
for help on using the changeset viewer.