Changeset 2342
- Timestamp:
- 02/15/2005 12:46:58 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r2240 r2342 31 31 // Change to E_ALL for development/debugging 32 32 error_reporting(E_ALL ^ E_NOTICE); 33 34 // For an advanced caching plugin to use, static because you would only want one 35 if ( defined('WP_CACHE') ) 36 require (ABSPATH . 'wp-content/advanced-cache.php'); 33 37 34 38 define('WPINC', 'wp-includes'); … … 90 94 91 95 if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) : 92 93 96 // Used to guarantee unique hash cookies 94 97 $cookiehash = md5(get_settings('siteurl')); // Remove in 1.4 … … 97 100 98 101 require (ABSPATH . WPINC . '/vars.php'); 102 103 do_action('core_files_loaded'); 99 104 100 105 // Check for hacks file if the option is enabled … … 111 116 } 112 117 } 118 119 if ( defined('WP_CACHE') && function_exists('wp_cache_postload') ) 120 wp_cache_postload(); 121 122 do_action('plugins_loaded'); 113 123 114 124 define('TEMPLATEPATH', get_template_directory());
Note: See TracChangeset
for help on using the changeset viewer.