Ticket #37280: 37280.diff
File 37280.diff, 4.2 KB (added by , 5 years ago) |
---|
-
js/_enqueues/admin/edit-comments.js
435 435 436 436 el.before(h); 437 437 438 $('strong', '#undo-' + id). text(author);438 $('strong', '#undo-' + id).replaceWith(author); 439 439 a = $('.undo a', '#undo-' + id); 440 440 a.attr('href', 'comment.php?action=un' + action + 'comment&c=' + id + '&_wpnonce=' + settings.data._ajax_nonce); 441 441 a.attr('data-wp-lists', 'delete:the-comment-list:comment-' + id + '::un' + action + '=1'); -
wp-admin/edit-tag-form.php
76 76 if ( $message ) { 77 77 ?> 78 78 <div id="message" class="notice notice-<?php echo $class; ?>"> 79 <p>< strong><?php echo $message; ?></strong></p>79 <p><?php echo $message; ?></p> 80 80 <?php if ( $wp_http_referer ) { ?> 81 81 <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>"> 82 82 <?php echo esc_html( $tax->labels->back_to_items ); ?> -
wp-admin/includes/nav-menu.php
1227 1227 sprintf( 1228 1228 /* translators: %s: Nav menu title. */ 1229 1229 __( '%s has been updated.' ), 1230 '<strong>' . $nav_menu_selected_title . '</strong>'1230 $nav_menu_selected_title 1231 1231 ) . '</p></div>'; 1232 1232 1233 1233 unset( $menu_items, $unsorted_menu_items ); -
wp-admin/includes/template.php
1852 1852 ); 1853 1853 1854 1854 $output .= "<div id='$css_id' class='$css_class'> \n"; 1855 $output .= "<p> <strong>{$details['message']}</strong></p>";1855 $output .= "<p>{$details['message']}</p>"; 1856 1856 $output .= "</div> \n"; 1857 1857 } 1858 1858 echo $output; -
wp-admin/my-sites.php
55 55 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 56 56 57 57 if ( $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> 59 59 <?php } ?> 60 60 61 61 <div class="wrap"> -
wp-admin/options.php
214 214 } 215 215 216 216 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 ======= 217 222 wp_die( 218 223 sprintf( 219 224 /* translators: %s: The options page name. */ … … 221 226 '<code>' . esc_html( $option_page ) . '</code>' 222 227 ) 223 228 ); 229 >>>>>>> .r47167 224 230 } 225 231 226 232 if ( 'options' == $option_page ) { -
wp-admin/user-edit.php
193 193 <?php if ( isset( $_GET['updated'] ) ) : ?> 194 194 <div id="message" class="updated notice is-dismissible"> 195 195 <?php if ( IS_PROFILE_PAGE ) : ?> 196 <p>< strong><?php _e( 'Profile updated.' ); ?></strong></p>196 <p><?php _e( 'Profile updated.' ); ?></p> 197 197 <?php else : ?> 198 <p>< strong><?php _e( 'User updated.' ); ?></strong></p>198 <p><?php _e( 'User updated.' ); ?></p> 199 199 <?php endif; ?> 200 200 <?php if ( $wp_http_referer && false === strpos( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) : ?> 201 201 <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '← Back to Users' ); ?></a></p>