Changeset 35182
- Timestamp:
- 10/15/2015 03:07:48 AM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r35170 r35182 1928 1928 <label class="screen-reader-text" for="async-upload"><?php _e('Upload'); ?></label> 1929 1929 <input type="file" name="async-upload" id="async-upload" /> 1930 <?php submit_button( __( 'Upload' ), ' button', 'html-upload', false ); ?>1930 <?php submit_button( __( 'Upload' ), 'primary', 'html-upload', false ); ?> 1931 1931 <a href="#" onclick="try{top.tb_remove();}catch(e){}; return false;"><?php _e('Cancel'); ?></a> 1932 1932 </p> -
trunk/src/wp-admin/includes/ms.php
r35170 r35182 1078 1078 <?php endif; 1079 1079 1080 submit_button( __('Confirm Deletion'), ' delete' );1080 submit_button( __('Confirm Deletion'), 'primary' ); 1081 1081 ?> 1082 1082 </form> -
trunk/src/wp-admin/includes/template-functions.php
r35170 r35182 846 846 <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" /> 847 847 </p> 848 <?php submit_button( __('Upload file and import'), ' button' ); ?>848 <?php submit_button( __('Upload file and import'), 'primary' ); ?> 849 849 </form> 850 850 <?php -
trunk/src/wp-admin/network/sites.php
r34891 r35182 108 108 <?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?> 109 109 <p><?php echo sprintf( $manage_actions[ $site_action ], $site_address ); ?></p> 110 <?php submit_button( __( 'Confirm' ), ' button' ); ?>110 <?php submit_button( __( 'Confirm' ), 'primary' ); ?> 111 111 </form> 112 112 </div> -
trunk/src/wp-admin/network/upgrade.php
r35000 r35182 117 117 118 118 <p><?php _e( 'The database update process may take a little while, so please be patient.' ); ?></p> 119 <p><a class="button " href="upgrade.php?action=upgrade"><?php _e( 'Upgrade Network' ); ?></a></p>119 <p><a class="button button-primary" href="upgrade.php?action=upgrade"><?php _e( 'Upgrade Network' ); ?></a></p> 120 120 <?php 121 121 /** -
trunk/src/wp-admin/users.php
r34891 r35182 283 283 ?> 284 284 <input type="hidden" name="action" value="dodelete" /> 285 <?php submit_button( __('Confirm Deletion'), ' secondary' ); ?>285 <?php submit_button( __('Confirm Deletion'), 'primary' ); ?> 286 286 <?php else : ?> 287 287 <p><?php _e('There are no valid users selected for deletion.'); ?></p> … … 381 381 <?php if ( $go_remove ) : ?> 382 382 <input type="hidden" name="action" value="doremove" /> 383 <?php submit_button( __('Confirm Removal'), ' secondary' ); ?>383 <?php submit_button( __('Confirm Removal'), 'primary' ); ?> 384 384 <?php else : ?> 385 385 <p><?php _e('There are no valid users selected for removal.'); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.