Changeset 38672 for trunk/src/wp-admin/update-core.php
- Timestamp:
- 09/28/2016 07:53:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r38470 r38672 93 93 if ( $show_buttons ) { 94 94 if ( $first_pass ) { 95 submit_button( $submit, $current ? ' button' : 'primary regular', 'upgrade', false );95 submit_button( $submit, $current ? '' : 'primary regular', 'upgrade', false ); 96 96 $first_pass = false; 97 97 } else { 98 submit_button( $submit, ' button', 'upgrade', false );98 submit_button( $submit, '', 'upgrade', false ); 99 99 } 100 100 echo ' <a href="' . esc_url( $update->download ) . '" class="button">' . $download . '</a> '; … … 102 102 if ( 'en_US' != $update->locale ) 103 103 if ( !isset( $update->dismissed ) || !$update->dismissed ) 104 submit_button( __( 'Hide this update'), 'button', 'dismiss', false );104 submit_button( __( 'Hide this update' ), '', 'dismiss', false ); 105 105 else 106 submit_button( __( 'Bring back this update'), 'button', 'undismiss', false );106 submit_button( __( 'Bring back this update' ), '', 'undismiss', false ); 107 107 echo '</p>'; 108 108 if ( 'en_US' != $update->locale && ( !isset($wp_local_package) || $wp_local_package != $update->locale ) )
Note: See TracChangeset
for help on using the changeset viewer.