Script handles of false are properly treated as meta groups. true does not work.

props SergeyBiryukov.
fixes #26525.


git-svn-id: https://develop.svn.wordpress.org/trunk@26848 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-12-11 17:41:23 +00:00
parent 66be19a0ed
commit 15ebbbc423

View File

@ -15,7 +15,7 @@ list( $display_version ) = explode( '-', $wp_version );
// Temporary 3.8 hack: We want to use user-profile for the color schemes but don't need the heavy zxcvbn. // Temporary 3.8 hack: We want to use user-profile for the color schemes but don't need the heavy zxcvbn.
wp_deregister_script( 'zxcvbn-async' ); wp_deregister_script( 'zxcvbn-async' );
wp_register_script( 'zxcvbn-async', true ); wp_register_script( 'zxcvbn-async', false );
wp_enqueue_script( 'user-profile' ); wp_enqueue_script( 'user-profile' );
include( ABSPATH . 'wp-admin/admin-header.php' ); include( ABSPATH . 'wp-admin/admin-header.php' );