Make WordPress Core

Ticket #45939: br-fix.patch

File br-fix.patch, 1.7 KB (added by man4toman, 5 years ago)
  • wp-admin/edit-comments.php

     
    297297                        }
    298298                }
    299299
    300                 echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br/>\n", $messages ) . '</p></div>';
     300                echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>';
    301301        }
    302302}
    303303?>
  • wp-admin/includes/class-wp-ms-users-list-table.php

     
    369369                                $sep = ( $i == $action_count ) ? '' : ' | ';
    370370                                echo "<span class='$action'>$link$sep</span>";
    371371                        }
    372                         echo '</small></span><br/>';
     372                        echo '</small></span><br />';
    373373                }
    374374        }
    375375
  • wp-admin/network/settings.php

     
    421421                                $fieldset_end = '</fieldset>';
    422422                        }
    423423                        foreach ( (array) $menu_items as $key => $val ) {
    424                                 echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br/>";
     424                                echo "<label><input type='checkbox' name='menu_items[" . $key . "]' value='1'" . ( isset( $menu_perms[$key] ) ? checked( $menu_perms[$key], '1', false ) : '' ) . " /> " . esc_html( $val ) . "</label><br />";
    425425                        }
    426426                        echo $fieldset_end;
    427427                        ?>