Changeset 16061 for trunk/wp-admin/plugin-editor.php
- Timestamp:
- 10/28/2010 09:56:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugin-editor.php
r16015 r16061 186 186 ?> 187 187 </select> 188 < input type="submit" name="Submit" value="<?php esc_attr_e('Select') ?>" class="button" />188 <?php submit_button( __( 'Select' ), 'button', 'Submit', false ); ?> 189 189 </form> 190 190 </div> … … 230 230 <p class="submit"> 231 231 <?php 232 if ( isset($_GET['phperror']) ) 233 echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' class='button-primary' value='" . esc_attr__('Update File and Attempt to Reactivate') . "' tabindex='2' />"; 234 else 235 echo "<input type='submit' name='submit' class='button-primary' value='" . esc_attr__('Update File') . "' tabindex='2' />"; 232 if ( isset($_GET['phperror']) ) { 233 echo "<input type='hidden' name='phperror' value='1' />"; 234 submit_button( __( 'Update File and Attempt to Reactivate' ), 'primary', 'submit', false, array( 'tabindex' => '2' ) ); 235 } else { 236 submit_button( __( 'Update File' ), 'primary', 'submit', false, array( 'tabindex' => '2' ) ); 237 } 236 238 ?> 237 239 </p>
Note: See TracChangeset
for help on using the changeset viewer.