Changeset 45117 for trunk/src/wp-admin/includes/update.php
- Timestamp:
- 04/05/2019 04:59:34 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/update.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r44980 r45117 830 830 <?php 831 831 } 832 833 /** 834 * Displays a notice when the user is in recovery mode. 835 * 836 * @since 5.2.0 837 */ 838 function wp_recovery_mode_nag() { 839 if ( ! wp_is_recovery_mode() ) { 840 return; 841 } 842 843 ?> 844 <div class="notice notice-info"> 845 <p> 846 <?php esc_html_e( 'You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button.' ); ?> 847 </p> 848 </div> 849 <?php 850 }
Note: See TracChangeset
for help on using the changeset viewer.