Make WordPress Core


Ignore:
Timestamp:
05/03/2007 12:43:57 AM (19 years ago)
Author:
rob1n
Message:

Don't show Widgets admin page if core widgets aren't enabled. fixes #4218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r5370 r5376  
    15071507    if ( !function_exists( 'dynamic_sidebar' ) ) {
    15081508        require_once ABSPATH . WPINC . '/widgets.php';
     1509       
     1510        if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin' ) !== false && isset( $GLOBALS['submenu'] ) ) {
     1511            $GLOBALS['submenu']['themes.php'][7] = array( __( 'Widgets' ), 'edit_themes', 'widgets.php' );
     1512        }
    15091513    }
    15101514}
Note: See TracChangeset for help on using the changeset viewer.