Changeset 17211
- Timestamp:
- 01/03/2011 07:19:34 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r17141 r17211 1477 1477 $post_params = apply_filters( 'swfupload_post_params', $post_params ); 1478 1478 $p = array(); 1479 foreach ( $post_params as $param => &$val )1479 foreach ( $post_params as $param => $val ) 1480 1480 $p[] = "\t\t'$param' : '$val'"; 1481 1481 $post_params_str = implode( ", \n", $p ); -
trunk/wp-includes/class-wp-admin-bar.php
r17184 r17211 158 158 159 159 function add_node( $parent_id, &$menu, $child ) { 160 foreach( $menu as $id => &$menu_item ) {160 foreach( $menu as $id => $menu_item ) { 161 161 if ( $parent_id == $id ) { 162 162 $menu->{$parent_id}['children']->{$child['id']} = $child;
Note: See TracChangeset
for help on using the changeset viewer.