Make WordPress Core

Ticket #49059: 49059.diff

File 49059.diff, 1.4 KB (added by johnjamesjacoby, 4 years ago)
  • src/wp-signup.php

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: /Users/jjj/Development/Local/wpdev/app/private
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    344344        if ( $errors->has_errors() ) {
    345345                echo '<p>' . __( 'There was a problem, please correct the form below and try again.' ) . '</p>';
    346346        }
    347         ?>
    348         <p>
    349                 <?php
    350                 printf(
    351                         /* translators: %s: Current user's display name. */
    352                         __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!' ),
    353                         $current_user->display_name
    354                 );
    355                 ?>
    356         </p>
    357347
    358         <?php
     348        echo '<p>' . sprintf(
     349                /* translators: %s: Current user's display name. */
     350                __( 'Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!' ),
     351                $current_user->display_name
     352        ) . '</p>';
     353
    359354        $blogs = get_blogs_of_user( $current_user->ID );
    360355        if ( ! empty( $blogs ) ) {
    361356                ?>