mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Coding Standards: Add a space before / character in some self-closing HTML tags.
While this has no effect on the code, it fixes a minor inconsistency with the rest of core. Props laxman-prajapati. Fixes #52870. git-svn-id: https://develop.svn.wordpress.org/trunk@50556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1063,7 +1063,7 @@ function wp_admin_bar_search_menu( $wp_admin_bar ) {
|
||||
$form = '<form action="' . esc_url( home_url( '/' ) ) . '" method="get" id="adminbarsearch">';
|
||||
$form .= '<input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" />';
|
||||
$form .= '<label for="adminbar-search" class="screen-reader-text">' . __( 'Search' ) . '</label>';
|
||||
$form .= '<input type="submit" class="adminbar-button" value="' . __( 'Search' ) . '"/>';
|
||||
$form .= '<input type="submit" class="adminbar-button" value="' . __( 'Search' ) . '" />';
|
||||
$form .= '</form>';
|
||||
|
||||
$wp_admin_bar->add_node(
|
||||
|
||||
Reference in New Issue
Block a user