- File:
-
- 1 edited
-
trunk/wp-admin/custom-background.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r16660 r15231 20 20 * 21 21 * @var callback 22 * @since 3.0.022 * @since unknown 23 23 * @access private 24 24 */ … … 211 211 <form method="post" action=""> 212 212 <?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?> 213 < ?php submit_button( __( 'Remove Background Image' ), 'button', 'remove-background', false ); ?><br/>213 <input type="submit" class="button" name="remove-background" value="<?php esc_attr_e('Remove Background Image'); ?>" /><br/> 214 214 <?php _e('This will remove the background image. You will not be able to restore any customizations.') ?> 215 215 </form> … … 224 224 <form method="post" action=""> 225 225 <?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?> 226 < ?php submit_button( __( 'Restore Original Image' ), 'button', 'reset-background', false ); ?><br/>226 <input type="submit" class="button" name="reset-background" value="<?php esc_attr_e('Restore Original Image'); ?>" /><br/> 227 227 <?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?> 228 228 </form> … … 237 237 <input type="hidden" name="action" value="save" /> 238 238 <?php wp_nonce_field('custom-background-upload', '_wpnonce-custom-background-upload') ?> 239 < ?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?>239 <input type="submit" class="button" value="<?php esc_attr_e('Upload'); ?>" /> 240 240 </p> 241 241 </form> … … 304 304 305 305 <?php wp_nonce_field('custom-background'); ?> 306 < ?php submit_button( null, 'primary', 'save-background-options' ); ?>306 <p class="submit"><input type="submit" class="button-primary" name="save-background-options" value="<?php esc_attr_e('Save Changes'); ?>" /></p> 307 307 </form> 308 308 … … 312 312 313 313 /** 314 * Handle a nImage upload for the background image.314 * Handle a Image upload for the background image. 315 315 * 316 316 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.