From a6a71fa4371459cb6f73f60c2a4fdbde96b2bdd3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 11 Dec 2013 17:42:09 +0000 Subject: [PATCH] Script handles of `false` are properly treated as meta groups. `true` does not work. props SergeyBiryukov. fixes #26525. Built from https://develop.svn.wordpress.org/trunk@26848 git-svn-id: http://core.svn.wordpress.org/trunk@26735 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/about.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/about.php b/wp-admin/about.php index 8742bb024c..b12fbe8aaf 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -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. wp_deregister_script( 'zxcvbn-async' ); -wp_register_script( 'zxcvbn-async', true ); +wp_register_script( 'zxcvbn-async', false ); wp_enqueue_script( 'user-profile' ); include( ABSPATH . 'wp-admin/admin-header.php' );