Ticket #37280: 37280.4.diff
File 37280.4.diff, 2.5 KB (added by , 4 years ago) |
---|
-
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
1241 1241 sprintf( 1242 1242 /* translators: %s: Nav menu title. */ 1243 1243 __( '%s has been updated.' ), 1244 '<strong>' . $nav_menu_selected_title . '</strong>'1244 $nav_menu_selected_title 1245 1245 ) . '</p></div>'; 1246 1246 1247 1247 unset( $menu_items, $unsorted_menu_items ); -
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/user-edit.php
197 197 <?php if ( isset( $_GET['updated'] ) ) : ?> 198 198 <div id="message" class="updated notice is-dismissible"> 199 199 <?php if ( IS_PROFILE_PAGE ) : ?> 200 <p>< strong><?php _e( 'Profile updated.' ); ?></strong></p>200 <p><?php _e( 'Profile updated.' ); ?></p> 201 201 <?php else : ?> 202 <p>< strong><?php _e( 'User updated.' ); ?></strong></p>202 <p><?php _e( 'User updated.' ); ?></p> 203 203 <?php endif; ?> 204 204 <?php if ( $wp_http_referer && false === strpos( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) : ?> 205 205 <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '← Go to Users' ); ?></a></p>