Changeset 20482
- Timestamp:
- 04/16/2012 09:52:02 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r19937 r20482 48 48 wp_load_translations_early(); 49 49 50 // Check for the required PHP version and for the MySQL extension or a database drop-in. 50 51 wp_check_php_mysql_versions(); 52 53 // Turn register_globals off. 54 wp_unregister_GLOBALS(); 51 55 52 56 require_once(ABSPATH . WPINC . '/compat.php'); 53 57 require_once(ABSPATH . WPINC . '/class-wp-error.php'); 58 require_once(ABSPATH . WPINC . '/formatting.php'); 59 60 // Add magic quotes and set up $_REQUEST ( $_GET + $_POST ) 61 wp_magic_quotes(); 54 62 55 63 if ( ! file_exists( ABSPATH . 'wp-config-sample.php' ) )
Note: See TracChangeset
for help on using the changeset viewer.