Ticket #50413: 50413.2.diff
File 50413.2.diff, 1.3 KB (added by , 3 years ago) |
---|
-
src/js/_enqueues/wp/password-strength-meter.js
53 53 * as username, first name, email etc. 54 54 * 55 55 * @since 3.7.0 56 * @deprecated 5.5.0 Use {@see 'userInput BlockList()'} instead.56 * @deprecated 5.5.0 Use {@see 'userInputDisallowedList()'} instead. 57 57 * 58 58 * @return {string[]} The array of words to be disallowed. 59 59 */ 60 60 userInputBlacklist : function() { 61 61 wp.deprecated( 'wp.passwordStrength.userInputBlacklist()', { 62 version: '5.5.0',63 62 alternative: 'wp.passwordStrength.userInputDisallowedList()', 64 63 plugin: 'WordPress', 65 64 hint: wp.i18n.__( 'Please consider writing more inclusive code.' ) -
tests/phpunit/tests/admin/includesSchema.php
159 159 'use_quicktags' => '1', 160 160 ), 161 161 array( 162 // This option disallowed and should never exist.162 // This option is disallowed and should never exist. 163 163 'use_quicktags' => false, 164 164 ), 165 165 ),