From aa19ffe126929e367da6b9cd42b82b14c1ad970c Mon Sep 17 00:00:00 2001 From: rob1n Date: Thu, 3 May 2007 00:52:14 +0000 Subject: [PATCH] Load order fixed. git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5377 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 322363afbc..fff1dcc198 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1472,11 +1472,13 @@ function smilies_init() { function wp_maybe_load_widgets() { if ( !function_exists( 'dynamic_sidebar' ) ) { require_once ABSPATH . WPINC . '/widgets.php'; - - if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin' ) !== false && isset( $GLOBALS['submenu'] ) ) { - $GLOBALS['submenu']['themes.php'][7] = array( __( 'Widgets' ), 'edit_themes', 'widgets.php' ); - } + add_action( 'admin_head', 'wp_widgets_admin_page' ); } } +function wp_widgets_admin_page() { + global $submenu; + $submenu['themes.php'][7] = array( __( 'Widgets' ), 'edit_themes', 'widgets.php' ); +} + ?> \ No newline at end of file