Coding Standards: Fix undeclared variable issue.
Follow-up to [56009], [56010]. See #40966. Built from https://develop.svn.wordpress.org/trunk@56011 git-svn-id: http://core.svn.wordpress.org/trunk@55523 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3c84117a95
commit
58341e16ce
|
@ -567,7 +567,7 @@
|
|||
* @param {string} response.errorMessage The error that occurred.
|
||||
*/
|
||||
wp.updates.updatePluginError = function( response ) {
|
||||
var $card, $message, errorMessage,
|
||||
var $pluginRow, $card, $message, errorMessage,
|
||||
$adminBarUpdates = $( '#wp-admin-bar-updates' );
|
||||
|
||||
if ( ! wp.updates.isValidResponse( response, 'update' ) ) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-56010';
|
||||
$wp_version = '6.3-alpha-56011';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue