Skip to:
Content

BuddyPress.org

Changeset 10052


Ignore:
Timestamp:
08/16/2015 11:09:16 PM (9 years ago)
Author:
tw2113
Message:

Punctuation cleanup for core files.

See #6398.

Location:
trunk/src/bp-core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-caps.php

    r10012 r10052  
    88 */
    99
    10 // Exit if accessed directly
     10// Exit if accessed directly.
    1111defined( 'ABSPATH' ) || exit;
    1212
  • trunk/src/bp-core/bp-core-classes.php

    r9819 r10052  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
  • trunk/src/bp-core/bp-core-component.php

    r10012 r10052  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
    1212if ( !class_exists( 'BP_Component' ) ) :
     13
    1314/**
    1415 * BuddyPress Component Class.
     
    588589     * @since BuddyPress (2.0.0)
    589590     *
    590      * @param array $tables
     591     * @param array $tables Table names to register.
    591592     */
    592593    public function register_global_tables( $tables = array() ) {
     
    631632     * @since BuddyPress (2.0.0)
    632633     *
    633      * @param array $tables
     634     * @param array $tables Table names to register.
    634635     */
    635636    public function register_meta_tables( $tables = array() ) {
     
    770771     * @since BuddyPress (1.9)
    771772     *
    772      * @uses do_action() Calls 'bp_{@link bp_Component::name}_parse_query'
     773     * @uses do_action() Calls 'bp_{@link bp_Component::name}_parse_query'.
     774     *
    773775     * @param object $query The main WP_Query.
    774776     */
     
    806808    }
    807809}
    808 endif; // BP_Component
     810endif; // BP_Component.
  • trunk/src/bp-core/bp-core-widgets.php

    r10012 r10052  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    7171
    7272            <?php
    73 
    74             /**
    75              * Fires before the display of widget content if logged in.
    76              *
    77              * @since BuddyPress (1.9.0)
    78              */
     73            /**
     74             * Fires before the display of widget content if logged in.
     75             *
     76             * @since BuddyPress (1.9.0)
     77             */
    7978            do_action( 'bp_before_login_widget_loggedin' ); ?>
    8079
     
    9392
    9493            /**
    95              * Fires after the display of widget content if logged in.
    96              *
    97              * @since BuddyPress (1.9.0)
    98              */
     94             * Fires after the display of widget content if logged in.
     95             *
     96             * @since BuddyPress (1.9.0)
     97             */
    9998            do_action( 'bp_after_login_widget_loggedin' ); ?>
    10099
     
    104103
    105104            /**
    106              * Fires before the display of widget content if logged out.
    107              *
    108              * @since BuddyPress (1.9.0)
    109              */
     105             * Fires before the display of widget content if logged out.
     106             *
     107             * @since BuddyPress (1.9.0)
     108             */
    110109            do_action( 'bp_before_login_widget_loggedout' ); ?>
    111110
     
    132131
    133132            /**
    134              * Fires after the display of widget content if logged out.
    135              *
    136              * @since BuddyPress (1.9.0)
    137              */
     133             * Fires after the display of widget content if logged out.
     134             *
     135             * @since BuddyPress (1.9.0)
     136             */
    138137            do_action( 'bp_after_login_widget_loggedout' ); ?>
    139138
     
    163162     * @param array $instance Settings for this widget.
    164163     *
    165      * @return string
     164     * @return void
    166165     */
    167166    public function form( $instance = array() ) {
Note: See TracChangeset for help on using the changeset viewer.