Changeset 2105 for trunk/wp-admin/templates.php
- Timestamp:
- 01/19/2005 03:23:38 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/templates.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/templates.php
r2005 r2105 101 101 ?> 102 102 <h3><?php _e('Common'); ?></h3> 103 <?php $common_files = array('index.php', 'wp-layout.css', 'wp-comments.php', 'wp-comments-popup.php', '.htaccess', 'my-hacks.php'); ?> 103 <?php $common_files = array('index.php', '.htaccess', 'my-hacks.php'); 104 $old_files = array('wp-layout.css', 'wp-comments.php', 'wp-comments-popup.php'); 105 foreach ($old_files as $old_file) { 106 if (file_exists(ABSPATH . $old_file)) 107 $common_files[] = $old_file; 108 } ?> 104 109 <ul> 105 110 <?php foreach ($common_files as $common_file) : ?>
Note: See TracChangeset
for help on using the changeset viewer.