Coding Standards: Fix WPCS violations in `wp-admin/includes/class-walker-nav-menu-edit.php`.
Props sudhiryadav, audrasjb. Fixes #46902. Built from https://develop.svn.wordpress.org/trunk@45697 git-svn-id: http://core.svn.wordpress.org/trunk@45508 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c9942bb3d8
commit
ec8940edeb
|
@ -234,7 +234,7 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<div class="menu-item-actions description-wide submitbox">
|
<div class="menu-item-actions description-wide submitbox">
|
||||||
<?php if ( 'custom' != $item->type && $original_title !== false ) : ?>
|
<?php if ( 'custom' !== $item->type && false !== $original_title ) : ?>
|
||||||
<p class="link-to-original">
|
<p class="link-to-original">
|
||||||
<?php
|
<?php
|
||||||
/* translators: %s: original title */
|
/* translators: %s: original title */
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45696';
|
$wp_version = '5.3-alpha-45697';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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