Changeset 53758 for trunk/src/wp-admin/plugin-editor.php
- Timestamp:
- 07/22/2022 11:31:27 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugin-editor.php
r53186 r53758 168 168 if ( ! empty( $functions ) ) { 169 169 $docs_select = '<select name="docs-list" id="docs-list">'; 170 $docs_select .= '<option value="">' . __( 'Function Name…' ) . '</option>'; 170 $docs_select .= '<option value="">' . esc_html__( 'Function Name…' ) . '</option>'; 171 171 172 foreach ( $functions as $function ) { 172 173 $docs_select .= '<option value="' . esc_attr( $function ) . '">' . esc_html( $function ) . '()</option>'; 173 174 } 175 174 176 $docs_select .= '</select>'; 175 177 }
Note: See TracChangeset
for help on using the changeset viewer.