Changeset 25783
- Timestamp:
- 10/15/2013 05:06:35 AM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r25649 r25783 43 43 $result = array(); 44 44 foreach ( $updates as $update ) { 45 if ( $update->response == 'autoupdate' ) 46 continue; 47 45 48 if ( array_key_exists( $update->current . '|' . $update->locale, $dismissed ) ) { 46 49 if ( $options['dismissed'] ) { -
trunk/src/wp-admin/update-core.php
r25633 r25783 25 25 global $wp_local_package, $wpdb; 26 26 static $first_pass = true; 27 28 // Don't show auto-updates in the updates page29 if ( isset( $update->response ) && 'autoupdate' == $update->response )30 return;31 27 32 28 $version_string = ('en_US' == $update->locale && 'en_US' == get_locale() ) ?
Note: See TracChangeset
for help on using the changeset viewer.