Make WordPress Core


Ignore:
Timestamp:
12/14/2009 12:38:05 AM (16 years ago)
Author:
azaozz
Message:

Move is_admin() to wp-settings.php so it's available when query.php is not included.

File:
1 edited

Legend:

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

    r12372 r12393  
    8686 * Query type checks.
    8787 */
    88 
    89 /**
    90  * Whether the current request is in WordPress admin Panel
    91  *
    92  * Does not inform on whether the user is an admin! Use capability checks to
    93  * tell if the user should be accessing a section or not.
    94  *
    95  * @since 1.5.1
    96  *
    97  * @return bool True if inside WordPress administration pages.
    98  */
    99 function is_admin () {
    100     if ( defined('WP_ADMIN') )
    101         return WP_ADMIN;
    102     return false;
    103 }
    10488
    10589/**
Note: See TracChangeset for help on using the changeset viewer.