Changeset 49193 for trunk/src/wp-includes/l10n.php
- Timestamp:
- 10/18/2020 05:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r48136 r49193 1618 1618 // Combine the output string. 1619 1619 $output = sprintf( '<select name="%s" id="%s">', esc_attr( $parsed_args['name'] ), esc_attr( $parsed_args['id'] ) ); 1620 $output .= join( "\n", $structure );1620 $output .= implode( "\n", $structure ); 1621 1621 $output .= '</select>'; 1622 1622
Note: See TracChangeset
for help on using the changeset viewer.