Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/18/2012 06:03:00 PM (14 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-core/admin/bp-core-components.php

    r6155 r6342  
    154154        $page      = bp_core_do_network_admin()  ? 'settings.php' : 'options-general.php';
    155155        $action    = !empty( $_GET['action'] ) ? $_GET['action'] : 'all';
    156        
     156
    157157        switch( $action ) {
    158158                case 'all' :
     
    173173                        break;
    174174        }
    175        
     175
    176176        // The setup wizard uses different, more descriptive text
    177177        if ( bp_get_maintenance_mode() ) : ?>
     
    182182
    183183        <?php endif ?>
    184                
     184
    185185                <ul class="subsubsub">
    186186                        <li><a href="<?php echo add_query_arg( array( 'page' => 'bp-components', 'action' => 'all'      ), bp_get_admin_url( $page ) ); ?>" <?php if ( $action === 'all'      ) : ?>class="current"<?php endif; ?>><?php printf( _nx( 'All <span class="count">(%s)</span>',      'All <span class="count">(%s)</span>',      $all_count,         'plugins', 'buddypress' ), number_format_i18n( $all_count                    ) ); ?></a> | </li>
     
    208208
    209209                        <tbody id="the-list">
    210                                
     210
    211211                                <?php if ( !empty( $current_components ) ) : ?>
    212212
     
    234234                                                                <strong><?php echo esc_html( $labels['title'] ); ?></strong>
    235235                                                                <div class="row-actions-visible">
    236                                                                        
     236
    237237                                                                </div>
    238238                                                        </td>
     
    243243                                                                </div>
    244244                                                                <div class="active second plugin-version-author-uri">
    245                                                                        
     245
    246246                                                                </div>
    247247                                                        </td>
     
    251251
    252252                                <?php else : ?>
    253                                                
     253
    254254                                        <tr class="no-items">
    255255                                                <td class="colspanchange" colspan="3"><?php _e( 'No components found.', 'buddypress' ); ?></td>
     
    297297}
    298298add_action( 'admin_init', 'bp_core_admin_components_settings_handler' );
    299 
    300 ?>
Note: See TracChangeset for help on using the changeset viewer.