Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/20/2014 09:17:12 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Revert part of r7760 in bp-loader.php. Divider lines always extend to 80 chars.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-loader.php

    r8434 r8435  
    3636class BuddyPress {
    3737
    38         /** Magic *************************************************************/
     38        /** Magic *****************************************************************/
    3939
    4040        /**
     
    5151        private $data;
    5252
    53         /** Not Magic *********************************************************/
     53        /** Not Magic *************************************************************/
    5454
    5555        /**
     
    9696        public $active_components = array();
    9797
    98         /** Option Overload ***************************************************/
     98        /** Option Overload *******************************************************/
    9999
    100100        /**
     
    103103        public $options = array();
    104104
    105         /** Singleton *********************************************************/
     105        /** Singleton *************************************************************/
    106106
    107107        /**
     
    146146        }
    147147
    148         /** Magic Methods *****************************************************/
     148        /** Magic Methods *********************************************************/
    149149
    150150        /**
     
    206206        public function __call( $name = '', $args = array() ) { unset( $name, $args ); return null; }
    207207
    208         /** Private Methods ***************************************************/
     208        /** Private Methods *******************************************************/
    209209
    210210        /**
     
    300300        private function setup_globals() {
    301301
    302                 /** Versions **************************************************/
     302                /** Versions **********************************************************/
    303303
    304304                $this->version    = '2.1-alpha';
    305305                $this->db_version = 8311;
    306306
    307                 /** Loading ***************************************************/
     307                /** Loading ***********************************************************/
    308308
    309309                $this->load_deprecated = ! apply_filters( 'bp_ignore_deprecated', BP_IGNORE_DEPRECATED );
    310310
    311                 /** Toolbar ***************************************************/
     311                /** Toolbar ***********************************************************/
    312312
    313313                /**
     
    316316                $this->my_account_menu_id = '';
    317317
    318                 /** URIs ******************************************************/
     318                /** URIs **************************************************************/
    319319
    320320                /**
     
    329329                $this->no_status_set = false;
    330330
    331                 /** Components ************************************************/
     331                /** Components ********************************************************/
    332332
    333333                /**
     
    351351                $this->is_single_item = false;
    352352
    353                 /** Root ******************************************************/
     353                /** Root **************************************************************/
    354354
    355355                // BuddyPress Root blog ID
    356356                $this->root_blog_id = (int) apply_filters( 'bp_get_root_blog_id', BP_ROOT_BLOG );
    357357
    358                 /** Paths******************************************************/
     358                /** Paths**************************************************************/
    359359
    360360                // BuddyPress root directory
     
    375375                $this->old_themes_url = $this->plugin_url . 'bp-themes';
    376376
    377                 /** Theme Compat **********************************************/
     377                /** Theme Compat ******************************************************/
    378378
    379379                $this->theme_compat   = new stdClass(); // Base theme compatibility class
    380380                $this->filters        = new stdClass(); // Used when adding/removing filters
    381381
    382                 /** Users *****************************************************/
     382                /** Users *************************************************************/
    383383
    384384                $this->current_user   = new stdClass();
     
    419419                $this->versions();
    420420
    421                 /** Update/Install ********************************************/
     421                /** Update/Install ****************************************************/
    422422
    423423                // Theme compatability
     
    527527        }
    528528
    529         /** Public Methods ****************************************************/
     529        /** Public Methods ********************************************************/
    530530
    531531        /**
Note: See TracChangeset for help on using the changeset viewer.