Changeset 10734 for trunk/wp-admin/theme-editor.php
- Timestamp:
- 03/06/2009 04:17:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/theme-editor.php
r10614 r10734 84 84 update_recently_edited($file); 85 85 86 if ( !is_file($real_file))86 if ( !is_file($real_file) ) 87 87 $error = 1; 88 88 89 if ( !$error && filesize($real_file) > 0) {89 if ( !$error && filesize($real_file) > 0 ) { 90 90 $f = fopen($real_file, 'r'); 91 91 $content = fread($f, filesize($real_file)); 92 92 93 if ( ' php' == mb_substr( $real_file, mb_strrpos( $real_file, '.' ) + 1) ) {93 if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) { 94 94 $functions = wp_doc_link_parse( $content ); 95 95 96 96 $docs_select = '<select name="docs-list" id="docs-list">'; 97 97 $docs_select .= '<option value="">' . __( 'Function Name...' ) . '</option>'; 98 foreach ( $functions as $function ) {98 foreach ( $functions as $function ) { 99 99 $docs_select .= '<option value="' . urlencode( $function ) . '">' . htmlspecialchars( $function ) . '()</option>'; 100 100 }
Note: See TracChangeset
for help on using the changeset viewer.