Ticket #25408: 25408.21.diff
| File 25408.21.diff, 835 bytes (added by , 11 years ago) |
|---|
-
src/wp-admin/includes/class-wp-list-table.php
850 850 * @return array 851 851 */ 852 852 protected function get_column_info() { 853 if ( isset( $this->_column_headers ) && is_array( $this->_column_headers ) && count( $this->_column_headers ) >= 4 ) { 854 return $this->_column_headers; 853 if ( isset( $this->_column_headers ) && is_array( $this->_column_headers ) ) { 854 $column_headers = array( array(), array(), array(), null ); 855 foreach ( $this->_column_headers as $key => $value ) { 856 $column_headers[ $key ] = $value; 857 } 858 859 return $column_headers; 855 860 } 856 861 857 862 $columns = get_column_headers( $this->screen );