Changeset 47871 for trunk/src/wp-includes/load.php
- Timestamp:
- 05/30/2020 03:11:02 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.