Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/18/2012 06:03:00 PM (13 years ago)
Author:
r-a-y
Message:

EOF:

  • Fall in line with WordPress 3.4 coding practices by removing all EOF closing PHP tags.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-template.php

    r6175 r6342  
    108108     * Constructor method
    109109     *
    110      * See definition of $defaults below, as well as $defaults in bp_has_activities(), for 
     110     * See definition of $defaults below, as well as $defaults in bp_has_activities(), for
    111111     * description of $args array
    112112     *
     
    139139            $args = bp_core_parse_args_array( $old_args_keys, $func_args );
    140140        }
    141        
     141
    142142        $defaults = array(
    143143            'page'             => 1,
     
    157157        $r = wp_parse_args( $args, $defaults );
    158158        extract( $r );
    159        
     159
    160160        $this->pag_page = isset( $_REQUEST[$page_arg] ) ? intval( $_REQUEST[$page_arg] ) : $page;
    161161        $this->pag_num  = isset( $_REQUEST['num'] ) ? intval( $_REQUEST['num'] ) : $per_page;
     
    27402740}
    27412741add_action( 'bp_head', 'bp_activity_sitewide_feed' );
    2742 
    2743 ?>
Note: See TracChangeset for help on using the changeset viewer.