Ticket #60222: 60222.diff
| File 60222.diff, 1.6 KB (added by , 2 years ago) |
|---|
-
src/js/_enqueues/wp/customize/controls.js
3866 3866 var control = this, container, notifications, hasError = false; 3867 3867 3868 3868 if ( 'undefined' !== typeof console && console.warn ) { 3869 console.warn( '[DEPRECATED] wp.customize.Control.prototype.renderNotifications() is deprecated in favor of instant ating a wp.customize.Notifications and calling its render() method.' );3869 console.warn( '[DEPRECATED] wp.customize.Control.prototype.renderNotifications() is deprecated in favor of instantiating a wp.customize.Notifications and calling its render() method.' ); 3870 3870 } 3871 3871 3872 3872 container = control.getNotificationsContainerElement(); -
src/wp-admin/includes/deprecated.php
1152 1152 /** 1153 1153 * This was once used to kick-off the Core Updater. 1154 1154 * 1155 * Deprecated in favor of instant ating a Core_Upgrader instance directly,1155 * Deprecated in favor of instantiating a Core_Upgrader instance directly, 1156 1156 * and calling the 'upgrade' method. 1157 1157 * 1158 1158 * @since 2.7.0 … … 1174 1174 /** 1175 1175 * This was once used to kick-off the Plugin Updater. 1176 1176 * 1177 * Deprecated in favor of instant ating a Plugin_Upgrader instance directly,1177 * Deprecated in favor of instantiating a Plugin_Upgrader instance directly, 1178 1178 * and calling the 'upgrade' method. 1179 1179 * Unused since 2.8.0. 1180 1180 *