Changeset 10734 for trunk/wp-admin/plugin-editor.php
- Timestamp:
- 03/06/2009 04:17:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugin-editor.php
r10627 r10734 92 92 if ( ! $error ) { 93 93 $content = file_get_contents( $real_file ); 94 95 if ( ' php' == mb_substr( $real_file, mb_strrpos( $real_file, '.' ) + 1) ) {94 95 if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) { 96 96 $functions = wp_doc_link_parse( $content ); 97 97 98 98 $docs_select = '<select name="docs-list" id="docs-list">'; 99 99 $docs_select .= '<option value="">' . __( 'Function Name...' ) . '</option>'; … … 103 103 $docs_select .= '</select>'; 104 104 } 105 105 106 106 $content = htmlspecialchars( $content ); 107 107 $codepress_lang = codepress_get_lang($real_file);
Note: See TracChangeset
for help on using the changeset viewer.