General: Fix some code formatting issues.
A handful of code formatting issues were introduced in [44159], runs the auto-fixer on them. Built from https://develop.svn.wordpress.org/trunk@44160 git-svn-id: http://core.svn.wordpress.org/trunk@43990 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e4b570f8fb
commit
ed941d9ed4
|
@ -336,8 +336,8 @@ function wp_default_packages_scripts( &$scripts ) {
|
|||
);
|
||||
|
||||
foreach ( $packages_dependencies as $package => $dependencies ) {
|
||||
$handle = 'wp-' . $package;
|
||||
$path = "/wp-includes/js/dist/$package$suffix.js";
|
||||
$handle = 'wp-' . $package;
|
||||
$path = "/wp-includes/js/dist/$package$suffix.js";
|
||||
|
||||
$scripts->add( $handle, $path, $dependencies, false, 1 );
|
||||
}
|
||||
|
@ -1825,8 +1825,8 @@ function wp_default_styles( &$styles ) {
|
|||
);
|
||||
|
||||
foreach ( $package_styles as $package => $dependencies ) {
|
||||
$handle = 'wp-' . $package;
|
||||
$path = '/wp-includes/css/dist/' . $package . '/style.css';
|
||||
$handle = 'wp-' . $package;
|
||||
$path = '/wp-includes/css/dist/' . $package . '/style.css';
|
||||
|
||||
$styles->add( $handle, $path, $dependencies );
|
||||
$styles->add_data( $handle, 'rtl', 'replace' );
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.1-alpha-44159';
|
||||
$wp_version = '5.1-alpha-44160';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue