Make WordPress Core


Ignore:
Timestamp:
12/13/2010 09:21:50 PM (15 years ago)
Author:
ryan
Message:

Pink trailing whites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-ms-users-list-table.php

    r16879 r16900  
    161161
    162162                $attributes = "$class$style";
    163                
     163
    164164
    165165                switch ( $column_name ) {
     
    220220                                    if ( !can_edit_network( $val->site_id ) )
    221221                                        continue;
    222                                    
     222
    223223                                    $path   = ( $val->path == '/' ) ? '' : $val->path;
    224224                                    echo '<span class="site-' . $val->site_id . '" >';
     
    227227                                    $actions = array();
    228228                                    $actions['edit'] = '<a href="'. esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) .'">' . __( 'Edit' ) . '</a>';
    229                                    
     229
    230230                                    $class = '';
    231231                                    if ( get_blog_status( $val->userblog_id, 'spam' ) == 1 )
     
    237237                                    if ( get_blog_status( $val->userblog_id, 'archived' ) == 1 )
    238238                                        $class .= 'site-archived ';
    239                                    
     239
    240240                                    $actions['view'] = '<a class="' . $class . '" href="' .  esc_url( get_home_url( $val->userblog_id ) )  . '">' . __( 'View' ) . '</a>';
    241                                    
     241
    242242                                    $actions = apply_filters('ms_user_list_site_actions', $actions, $val->userblog_id);
    243                                    
     243
    244244                                    $i=0;
    245245                                    $action_count = count( $actions );
Note: See TracChangeset for help on using the changeset viewer.