Make WordPress Core

Ticket #37280: 37280.diff

File 37280.diff, 4.2 KB (added by Presskopp, 5 years ago)
  • js/_enqueues/admin/edit-comments.js

     
    435435
    436436                        el.before(h);
    437437
    438                         $('strong', '#undo-' + id).text(author);
     438                        $('strong', '#undo-' + id).replaceWith(author);
    439439                        a = $('.undo a', '#undo-' + id);
    440440                        a.attr('href', 'comment.php?action=un' + action + 'comment&c=' + id + '&_wpnonce=' + settings.data._ajax_nonce);
    441441                        a.attr('data-wp-lists', 'delete:the-comment-list:comment-' + id + '::un' + action + '=1');
  • wp-admin/edit-tag-form.php

     
    7676if ( $message ) {
    7777        ?>
    7878<div id="message" class="notice notice-<?php echo $class; ?>">
    79         <p><strong><?php echo $message; ?></strong></p>
     79        <p><?php echo $message; ?></p>
    8080        <?php if ( $wp_http_referer ) { ?>
    8181        <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>">
    8282                <?php echo esc_html( $tax->labels->back_to_items ); ?>
  • wp-admin/includes/nav-menu.php

     
    12271227                sprintf(
    12281228                        /* translators: %s: Nav menu title. */
    12291229                        __( '%s has been updated.' ),
    1230                         '<strong>' . $nav_menu_selected_title . '</strong>'
     1230                        $nav_menu_selected_title
    12311231                ) . '</p></div>';
    12321232
    12331233        unset( $menu_items, $unsorted_menu_items );
  • wp-admin/includes/template.php

     
    18521852                );
    18531853
    18541854                $output .= "<div id='$css_id' class='$css_class'> \n";
    1855                 $output .= "<p><strong>{$details['message']}</strong></p>";
     1855                $output .= "<p>{$details['message']}</p>";
    18561856                $output .= "</div> \n";
    18571857        }
    18581858        echo $output;
  • wp-admin/my-sites.php

     
    5555require_once( ABSPATH . 'wp-admin/admin-header.php' );
    5656
    5757if ( $updated ) { ?>
    58         <div id="message" class="updated notice is-dismissible"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>
     58        <div id="message" class="updated notice is-dismissible"><p><?php _e( 'Settings saved.' ); ?></p></div>
    5959<?php } ?>
    6060
    6161<div class="wrap">
  • wp-admin/options.php

     
    214214        }
    215215
    216216        if ( ! isset( $whitelist_options[ $option_page ] ) ) {
     217<<<<<<< .mine
     218                wp_die( __( '<strong>ERROR</strong>: Options page not found.' ) );
     219||||||| .r43326
     220                wp_die( __( '<strong>ERROR</strong>: options page not found.' ) );
     221=======
    217222                wp_die(
    218223                        sprintf(
    219224                                /* translators: %s: The options page name. */
     
    221226                                '<code>' . esc_html( $option_page ) . '</code>'
    222227                        )
    223228                );
     229>>>>>>> .r47167
    224230        }
    225231
    226232        if ( 'options' == $option_page ) {
  • wp-admin/user-edit.php

     
    193193                <?php if ( isset( $_GET['updated'] ) ) : ?>
    194194<div id="message" class="updated notice is-dismissible">
    195195                        <?php if ( IS_PROFILE_PAGE ) : ?>
    196         <p><strong><?php _e( 'Profile updated.' ); ?></strong></p>
     196        <p><?php _e( 'Profile updated.' ); ?></p>
    197197        <?php else : ?>
    198         <p><strong><?php _e( 'User updated.' ); ?></strong></p>
     198        <p><?php _e( 'User updated.' ); ?></p>
    199199        <?php endif; ?>
    200200                        <?php if ( $wp_http_referer && false === strpos( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) : ?>
    201201        <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '&larr; Back to Users' ); ?></a></p>