Changeset 47871
- Timestamp:
- 05/30/2020 03:11:02 PM (5 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-fatal-error-handler.php
r47768 r47871 32 32 33 33 // Do not trigger the fatal error handler while updates are being installed. 34 if ( wp_i n_maintenance_mode() ) {34 if ( wp_is_maintenance_mode() ) { 35 35 return; 36 36 } -
trunk/src/wp-includes/load.php
r47808 r47871 155 155 function wp_maintenance() { 156 156 // Return if maintenance mode is disabled. 157 if ( ! wp_i n_maintenance_mode() ) {157 if ( ! wp_is_maintenance_mode() ) { 158 158 return; 159 159 } … … 190 190 * @return bool True if maintenance mode is enabled, false otherwise. 191 191 */ 192 function wp_i n_maintenance_mode() {192 function wp_is_maintenance_mode() { 193 193 global $upgrading; 194 194
Note: See TracChangeset
for help on using the changeset viewer.