diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php
index 8d1775d..6b00e44 100644
a
|
b
|
if ( $allowed_files ) : |
185 | 185 | |
186 | 186 | if ( $absolute_filename == $file ) |
187 | 187 | $file_description = '<span class="highlight">' . $file_description . '</span>'; |
| 188 | |
| 189 | if ( basename( $absolute_filename ) === 'index.php' && $filename !== 'index.php' ) { |
| 190 | $file_description = $filename; |
| 191 | } |
| 192 | |
188 | 193 | ?> |
189 | 194 | <li><a href="theme-editor.php?file=<?php echo urlencode( $filename ) ?>&theme=<?php echo urlencode( $stylesheet ) ?>"><?php echo $file_description; ?></a></li> |
190 | 195 | <?php |