Ticket #21010: 21010.3.patch

File 21010.3.patch, 751 bytes (added by SergeyBiryukov, 5 months ago)
  • wp-admin/includes/class-wp-comments-list-table.php

     
    254254                if ( $this->checkbox ) 
    255255                        $columns['cb'] = '<input type="checkbox" />'; 
    256256 
    257                 $columns['author'] = __( 'Author' ); 
    258                 $columns['comment'] = _x( 'Comment', 'column name' ); 
     257                $columns['author']   = __( 'Author' ); 
     258                $columns['comment']  = _x( 'Comment', 'column name' ); 
     259                $columns['response'] = _x( 'In Response To', 'column name' ); 
    259260 
    260                 if ( !$post_id ) 
    261                         $columns['response'] = _x( 'In Response To', 'column name' ); 
    262  
    263261                return $columns; 
    264262        } 
    265263