From 92bfe7a248943abd7c77fcaec2b4a895eddb5846 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 13 Jul 2005 19:29:18 +0000 Subject: [PATCH] Rearrange load order. Init classes before loading the text domain and setting the template path. git-svn-id: https://develop.svn.wordpress.org/trunk@2706 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/wp-settings.php b/wp-settings.php index 4d9571955e..8d2b18f125 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -131,14 +131,6 @@ if ( defined('WP_CACHE') && function_exists('wp_cache_postload') ) do_action('plugins_loaded'); -define('TEMPLATEPATH', get_template_directory()); - -// Load the default text localization domain. -load_default_textdomain(); - -// Pull in locale data after loading text domain. -require_once(ABSPATH . WPINC . '/locale.php'); - // If already slashed, strip. if ( get_magic_quotes_gpc() ) { $_GET = stripslashes_deep($_GET ); @@ -153,16 +145,24 @@ $_POST = add_magic_quotes($_POST ); $_COOKIE = add_magic_quotes($_COOKIE); $_SERVER = add_magic_quotes($_SERVER); -function shutdown_action_hook() { - do_action('shutdown'); -} -register_shutdown_function('shutdown_action_hook'); - $wp_query = new WP_Query(); $wp_rewrite = new WP_Rewrite(); $wp = new WP(); $wp_roles = new WP_Roles(); +define('TEMPLATEPATH', get_template_directory()); + +// Load the default text localization domain. +load_default_textdomain(); + +// Pull in locale data after loading text domain. +require_once(ABSPATH . WPINC . '/locale.php'); + +function shutdown_action_hook() { + do_action('shutdown'); +} +register_shutdown_function('shutdown_action_hook'); + // Everything is loaded and initialized. do_action('init'); ?>