Changeset 2003

Show
Ignore:
Timestamp:
12/26/04 16:37:55 (4 years ago)
Author:
rboren
Message:

Add is_admin flag. Do not set is_home if is_admin.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/classes.php

    r2000 r2003  
    2727    var $is_home = false; 
    2828    var $is_404 = false; 
     29    var $is_admin = false; 
    2930 
    3031    function init () { 
     
    4546        $this->is_404 = false; 
    4647        $this->is_paged = false; 
     48        $this->is_admin = false; 
    4749 
    4850        unset($this->posts); 
     
    176178        } 
    177179 
    178         if ( ! ($this->is_archive || $this->is_single || $this->is_page || $this->is_search || $this->is_feed || $this->is_trackback || $this->is_404)) { 
     180        if (strstr($_SERVER['PHP_SELF'], 'wp-admin/')) { 
     181            $this->is_admin = true; 
     182        } 
     183 
     184        if ( ! ($this->is_archive || $this->is_single || $this->is_page || $this->is_search || $this->is_feed || $this->is_trackback || $this->is_404 || $this->is_admin)) { 
    179185            $this->is_home = true; 
    180186        }