Changeset 33270 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 07/14/2015 05:46:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r33266 r33270 1225 1225 echo $this->column_cb( $item ); 1226 1226 echo '</th>'; 1227 } 1228 elseif ( method_exists( $this, 'column_' . $column_name ) ) { 1227 } elseif ( method_exists( $this, '_column_' . $column_name ) ) { 1228 echo call_user_func( 1229 array( $this, '_column_' . $column_name ), 1230 $item, 1231 $classes, 1232 $data, 1233 $primary 1234 ); 1235 } elseif ( method_exists( $this, 'column_' . $column_name ) ) { 1229 1236 echo "<td $attributes>"; 1230 1237 echo call_user_func( array( $this, 'column_' . $column_name ), $item ); 1231 1238 echo $this->handle_row_actions( $item, $column_name, $primary ); 1232 1239 echo "</td>"; 1233 } 1234 else { 1240 } else { 1235 1241 echo "<td $attributes>"; 1236 1242 echo $this->column_default( $item, $column_name );
Note: See TracChangeset
for help on using the changeset viewer.