Coding Standards: Fix missing semicolon after [56009].
See #40966. Built from https://develop.svn.wordpress.org/trunk@56010 git-svn-id: http://core.svn.wordpress.org/trunk@55522 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c77c814942
commit
3c84117a95
|
@ -2475,7 +2475,7 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$itemRow.addClass( 'is-enqueued' )
|
$itemRow.addClass( 'is-enqueued' );
|
||||||
|
|
||||||
// Add it to the queue.
|
// Add it to the queue.
|
||||||
wp.updates.queue.push( {
|
wp.updates.queue.push( {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-56009';
|
$wp_version = '6.3-alpha-56010';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue