Make WordPress Core


Ignore:
Timestamp:
09/02/2022 06:49:17 AM (2 years ago)
Author:
audrasjb
Message:

Coding Standards: Use a consistent markup for line break tags across Core.

This changeset replaces <br/> with <br /> on various places, as per WordPress Coding Standards.
See https://developer.wordpress.org/coding-standards/wordpress-coding-standards/html/#self-closing-elements

Props haritpanchal, costdev, audrasjb.
Fixes #56457.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-filesystem-base.php

    r53872 r54062  
    263263        if ( $this->verbose ) {
    264264            /* translators: 1: Folder to locate, 2: Folder to start searching from. */
    265             printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br/>\n", $folder, $base );
     265            printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br />\n", $folder, $base );
    266266        }
    267267
     
    292292                if ( $this->verbose ) {
    293293                    /* translators: %s: Directory name. */
    294                     printf( "\n" . __( 'Changing to %s' ) . "<br/>\n", $newdir );
     294                    printf( "\n" . __( 'Changing to %s' ) . "<br />\n", $newdir );
    295295                }
    296296
     
    310310            if ( $this->verbose ) {
    311311                /* translators: %s: Directory name. */
    312                 printf( "\n" . __( 'Found %s' ) . "<br/>\n", $base . $last_path );
     312                printf( "\n" . __( 'Found %s' ) . "<br />\n", $base . $last_path );
    313313            }
    314314
Note: See TracChangeset for help on using the changeset viewer.