Make WordPress Core

Ticket #40659: 40659.2.patch

File 40659.2.patch, 529 bytes (added by yahil, 8 years ago)
  • src/wp-admin/includes/class-wp-terms-list-table.php

     
    501501         * @return string
    502502         */
    503503        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                }
    505509        }
    506510
    507511        /**