Changeset 11646 for branches/2.8/wp-admin/theme-editor.php
- Timestamp:
- 06/26/2009 11:05:04 AM (17 years ago)
- File:
-
- 1 edited
-
branches/2.8/wp-admin/theme-editor.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/theme-editor.php
r11616 r11646 118 118 <?php screen_icon(); ?> 119 119 <h2><?php echo esc_html( $title ); ?></h2> 120 <div class="bordertitle"> 121 <form id="themeselector" action="theme-editor.php" method="post"> 120 121 <div class="fileedit-sub"> 122 <div class="alignleft"> 123 <big><?php echo sprintf($desc_header, $file_show); ?></big> 124 </div> 125 <div class="alignright"> 126 <form action="theme-editor.php" method="post"> 122 127 <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong> 123 128 <select name="theme" id="theme"> … … 135 140 </form> 136 141 </div> 137 <div class="tablenav">138 <div class="alignleft">139 <big><?php echo sprintf($desc_header, $file_show); ?></big>140 </div>141 142 <br class="clear" /> 142 143 </div> 143 <br class="clear" /> 144 <div id="templateside">145 <h3 id="bordertitle"><?php _e("Theme Files"); ?></h3>144 145 <div id="templateside"> 146 <h3><?php _e("Theme Files"); ?></h3> 146 147 147 148 <?php … … 194 195 <?php endif; ?> 195 196 </div> 196 <?php 197 if (!$error) { 198 ?> 199 <form name="template" id="template" action="theme-editor.php" method="post"> 197 198 <?php if (!$error) { ?> 199 <form name="template" id="template" action="theme-editor.php" method="post"> 200 200 <?php wp_nonce_field('edit-theme_' . $file . $theme) ?> 201 201 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1" class="codepress <?php echo $codepress_lang ?>"><?php echo $content ?></textarea> … … 223 223 <?php endif; ?> 224 224 </div> 225 </form>226 <?php225 </form> 226 <?php 227 227 } else { 228 228 echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>'; 229 229 } 230 ?>231 < div class="clear"> </div>230 ?> 231 <br class="clear" /> 232 232 </div> 233 233 <?php … … 235 235 } 236 236 237 include("admin-footer.php") ?>237 include("admin-footer.php");
Note: See TracChangeset
for help on using the changeset viewer.