Ticket #25887: 25887.patch
File 25887.patch, 560 bytes (added by , 7 years ago) |
---|
-
src/wp-admin/includes/update.php
364 364 * This flag is cleared whenever a successful update occurs using Core_Upgrader. 365 365 */ 366 366 $comparison = ! empty( $failed['critical'] ) ? '>=' : '>'; 367 if ( version_compare( $failed['attempted'], $wp_version, '>=') )367 if ( version_compare( $failed['attempted'], $wp_version, $comparison ) ) 368 368 $nag = true; 369 369 } 370 370