Coding Standards: Fix incorrect alignment in two comment blocks.
Tabs should only be used for indentation and not for mid-line alignment. Props jrf. See #53359. Built from https://develop.svn.wordpress.org/trunk@51551 git-svn-id: http://core.svn.wordpress.org/trunk@51162 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
72acd346a2
commit
d289b7f602
|
@ -220,10 +220,13 @@ function wp_get_script_polyfill( $scripts, $tests ) {
|
||||||
function wp_default_packages_scripts( $scripts ) {
|
function wp_default_packages_scripts( $scripts ) {
|
||||||
$suffix = wp_scripts_get_suffix();
|
$suffix = wp_scripts_get_suffix();
|
||||||
|
|
||||||
// Expects multidimensional array like:
|
/*
|
||||||
// 'a11y.js' => array('dependencies' => array(...), 'version' => '...'),
|
* Expects multidimensional array like:
|
||||||
// 'annotations.js' => array('dependencies' => array(...), 'version' => '...'),
|
*
|
||||||
// 'api-fetch.js' => array(...
|
* 'a11y.js' => array('dependencies' => array(...), 'version' => '...'),
|
||||||
|
* 'annotations.js' => array('dependencies' => array(...), 'version' => '...'),
|
||||||
|
* 'api-fetch.js' => array(...
|
||||||
|
*/
|
||||||
$assets = include ABSPATH . WPINC . '/assets/script-loader-packages.php';
|
$assets = include ABSPATH . WPINC . '/assets/script-loader-packages.php';
|
||||||
|
|
||||||
foreach ( $assets as $package_name => $package_data ) {
|
foreach ( $assets as $package_name => $package_data ) {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-51550';
|
$wp_version = '5.9-alpha-51551';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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