Customize: Correct a typo in a console warning message.
This corrects a typo from "instantating" to "instantiating". Follow-up to [41374]. Props benniledl, mukesh27, Presskopp. Fixes #60222. Built from https://develop.svn.wordpress.org/trunk@57262 git-svn-id: http://core.svn.wordpress.org/trunk@56768 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f2e220ffa2
commit
cee1cd2789
|
@ -3866,7 +3866,7 @@
|
|||
var control = this, container, notifications, hasError = false;
|
||||
|
||||
if ( 'undefined' !== typeof console && console.warn ) {
|
||||
console.warn( '[DEPRECATED] wp.customize.Control.prototype.renderNotifications() is deprecated in favor of instantating a wp.customize.Notifications and calling its render() method.' );
|
||||
console.warn( '[DEPRECATED] wp.customize.Control.prototype.renderNotifications() is deprecated in favor of instantiating a wp.customize.Notifications and calling its render() method.' );
|
||||
}
|
||||
|
||||
container = control.getNotificationsContainerElement();
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57261';
|
||||
$wp_version = '6.5-alpha-57262';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue