Changeset 21311 for trunk/wp-admin/theme-editor.php
- Timestamp:
- 07/24/2012 12:15:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/theme-editor.php
r21310 r21311 199 199 <form name="template" id="template" action="theme-editor.php" method="post"> 200 200 <?php wp_nonce_field( 'edit-theme_' . $file . $stylesheet ); ?> 201 <div><textarea cols="70" rows="30" name="newcontent" id="newcontent" aria-describedby="newcontent-description" tabindex="1"><?php echo $content ?></textarea>201 <div><textarea cols="70" rows="30" name="newcontent" id="newcontent" aria-describedby="newcontent-description"><?php echo $content ?></textarea> 202 202 <span id="newcontent-description" class="screen-reader-text"><?php _e('Content of the edited file. The Tab key enters a tab character, to move below this area, press the Esc key followed by the Tab key. Shift + Tab works as expected.'); ?></span> 203 203 <input type="hidden" name="action" value="update" /> … … 221 221 <?php 222 222 if ( is_writeable( $file ) ) : 223 submit_button( __( 'Update File' ), 'primary', 'submit', true , array( 'tabindex' => '2' ));223 submit_button( __( 'Update File' ), 'primary', 'submit', true ); 224 224 else : ?> 225 225 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="http://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p>
Note: See TracChangeset
for help on using the changeset viewer.