Changeset 49193 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 10/18/2020 05:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r49183 r49193 1119 1119 } 1120 1120 1121 return join( "\n", $out );1121 return implode( "\n", $out ); 1122 1122 } 1123 1123 … … 1196 1196 'label' => __( 'Size' ), 1197 1197 'input' => 'html', 1198 'html' => join( "\n", $out ),1198 'html' => implode( "\n", $out ), 1199 1199 ); 1200 1200 } … … 1425 1425 } 1426 1426 1427 $t['value'] = join( ', ', $values );1427 $t['value'] = implode( ', ', $values ); 1428 1428 1429 1429 $form_fields[ $taxonomy ] = $t; … … 1785 1785 1786 1786 if ( ! empty( $field['helps'] ) ) { 1787 $item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';1787 $item .= "<p class='help'>" . implode( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>'; 1788 1788 } 1789 1789 $item .= "</td>\n\t\t</tr>\n"; … … 1884 1884 } 1885 1885 1886 $t['value'] = join( ', ', $values );1886 $t['value'] = implode( ', ', $values ); 1887 1887 $t['taxonomy'] = true; 1888 1888 … … 1977 1977 1978 1978 if ( ! empty( $field['helps'] ) ) { 1979 $item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';1979 $item .= "<p class='help'>" . implode( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>'; 1980 1980 } 1981 1981
Note: See TracChangeset
for help on using the changeset viewer.