Ticket #40659: 40659.2.patch
File 40659.2.patch, 529 bytes (added by , 8 years ago) |
---|
-
src/wp-admin/includes/class-wp-terms-list-table.php
501 501 * @return string 502 502 */ 503 503 public function column_description( $tag ) { 504 return $tag->description; 504 if ( ! empty( $tag->description ) ) { 505 return $tag->description; 506 } else { 507 return _x( 'No description' ); 508 } 505 509 } 506 510 507 511 /**