Changeset 21311 for trunk/wp-admin/plugin-editor.php
- Timestamp:
- 07/24/2012 12:15:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugin-editor.php
r21310 r21311 227 227 <form name="template" id="template" action="plugin-editor.php" method="post"> 228 228 <?php wp_nonce_field('edit-plugin_' . $file) ?> 229 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" aria-describedby="newcontent-description" tabindex="1"><?php echo $content ?></textarea>229 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" aria-describedby="newcontent-description"><?php echo $content ?></textarea> 230 230 <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> 231 231 <input type="hidden" name="action" value="update" /> … … 245 245 if ( isset($_GET['phperror']) ) { 246 246 echo "<input type='hidden' name='phperror' value='1' />"; 247 submit_button( __( 'Update File and Attempt to Reactivate' ), 'primary', 'submit', false , array( 'tabindex' => '2' ));247 submit_button( __( 'Update File and Attempt to Reactivate' ), 'primary', 'submit', false ); 248 248 } else { 249 submit_button( __( 'Update File' ), 'primary', 'submit', false , array( 'tabindex' => '2' ));249 submit_button( __( 'Update File' ), 'primary', 'submit', false ); 250 250 } 251 251 ?>
Note: See TracChangeset
for help on using the changeset viewer.