Changeset 49108 for trunk/src/wp-includes/update.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/update.php
r48782 r49108 323 323 $new_option->checked[ $file ] = $p['Version']; 324 324 325 if ( ! isset( $current->checked[ $file ] ) || strval( $current->checked[ $file ] ) !== strval( $p['Version'] )) {325 if ( ! isset( $current->checked[ $file ] ) || (string) $current->checked[ $file ] !== (string) $p['Version'] ) { 326 326 $plugin_changed = true; 327 327 } … … 528 528 529 529 foreach ( $checked as $slug => $v ) { 530 if ( ! isset( $last_update->checked[ $slug ] ) || strval( $last_update->checked[ $slug ] ) !== strval( $v )) {530 if ( ! isset( $last_update->checked[ $slug ] ) || (string) $last_update->checked[ $slug ] !== (string) $v ) { 531 531 $theme_changed = true; 532 532 }
Note: See TracChangeset
for help on using the changeset viewer.