Coding Standards: Fix WPCS indentation issue in wp-admin/nav-menus.php.

This was causing a `PEAR.Functions.FunctionCallSignature.Indent` error if PHP_CodeSniffer 3.5.3 or newer is installed locally, despite the task passing on Travis.

See #49542.
Built from https://develop.svn.wordpress.org/trunk@47596


git-svn-id: http://core.svn.wordpress.org/trunk@47371 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-04-17 18:55:09 +00:00
parent af1a737b48
commit 012b134b23
2 changed files with 2 additions and 2 deletions

View File

@ -548,7 +548,7 @@ if ( ! $locations_screen ) : // Main tab.
$overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>';
$overview .= '<p>' . sprintf( $overview .= '<p>' . sprintf(
/* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */ /* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */
__( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a &#8220;Navigation Menu&#8221; widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a &#8220;Navigation Menu&#8221; widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ),
admin_url( 'widgets.php' ), admin_url( 'widgets.php' ),
'Twenty Nineteen', 'Twenty Nineteen',
'Twenty Twenty' 'Twenty Twenty'

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-alpha-47595'; $wp_version = '5.5-alpha-47596';
/** /**
* 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.