Changeset 2319 for trunk/wp-admin/theme-editor.php
- Timestamp:
- 02/14/2005 04:24:25 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/theme-editor.php
r2120 r2319 101 101 <?php 102 102 if (is_writeable($real_file)) { 103 echo '<h2>' . sprintf(__('Editing < strong>%s</strong>'), $file) . '</h2>';103 echo '<h2>' . sprintf(__('Editing <code>%s</code>'), $file) . '</h2>'; 104 104 } else { 105 echo '<h2>' . sprintf(__('Browsing < strong>%s</strong>'), $file) . '</h2>';105 echo '<h2>' . sprintf(__('Browsing <code>%s</code>'), $file) . '</h2>'; 106 106 } 107 107 ?> … … 114 114 <ul> 115 115 <?php foreach($allowed_files as $allowed_file) : ?> 116 <li><a href="theme-editor.php?file=<?php echo "$allowed_file"; ?>&theme=<?php echo urlencode($theme) ?>"><?php echo get_file_description( basename($allowed_file)); ?></a></li>116 <li><a href="theme-editor.php?file=<?php echo "$allowed_file"; ?>&theme=<?php echo urlencode($theme) ?>"><?php echo get_file_description($allowed_file); ?></a></li> 117 117 <?php endforeach; ?> 118 118 </ul>
Note: See TracChangeset
for help on using the changeset viewer.