Skip to:
Content

BuddyPress.org

Changeset 6025 for trunk/bp-loader.php


Ignore:
Timestamp:
05/13/2012 03:49:00 PM (13 years ago)
Author:
djpaul
Message:

Update BuddyPress class properties' default values to match phpdoc description

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-loader.php

    r5999 r6025  
    6868     * @var string State of BuddyPress installation
    6969     */
    70     public $maintenance_mode = false;
     70    public $maintenance_mode = '';
    7171
    7272    /**
     
    129129     * @var object Current user
    130130     */
    131     public $current_user = false;
     131    public $current_user = null;
    132132
    133133    /**
    134134     * @var object Displayed user
    135135     */
    136     public $displayed_user = false;
     136    public $displayed_user = null;
    137137
    138138    /** Navigation ************************************************************/
     
    199199
    200200    /**
    201      * @var array() Additional navigation elements (supplemental)
     201     * @var array Additional navigation elements (supplemental)
    202202     */
    203203    public $action_variables = array();
     
    211211
    212212    /**
    213      * @var WP_Error Used to log and display errors
     213     * @var array|WP_Error Used to log and display errors
    214214     */
    215215    public $errors = array();
Note: See TracChangeset for help on using the changeset viewer.