Changeset 23265 for trunk/wp-settings.php
- Timestamp:
- 01/04/2013 10:13:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r22817 r23265 24 24 25 25 // Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE. 26 wp_initial_constants( 26 wp_initial_constants(); 27 27 28 28 // Check for the required PHP version and for the MySQL extension or a database drop-in. … … 153 153 // Define constants that rely on the API to obtain the default value. 154 154 // Define must-use plugin directory constants, which may be overridden in the sunrise.php drop-in. 155 wp_plugin_directory_constants( 155 wp_plugin_directory_constants(); 156 156 157 157 // Load must-use plugins. … … 175 175 176 176 // Define constants after multisite is loaded. Cookie-related constants may be overridden in ms_network_cookies(). 177 wp_cookie_constants( 177 wp_cookie_constants(); 178 178 179 179 // Define and enforce our SSL constants 180 wp_ssl_constants( 180 wp_ssl_constants(); 181 181 182 182 // Create common globals. … … 210 210 211 211 // Define constants which affect functionality if not already defined. 212 wp_functionality_constants( 212 wp_functionality_constants(); 213 213 214 214 // Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
Note: See TracChangeset
for help on using the changeset viewer.