Make WordPress Core

Ticket #40659: 40659.patch

File 40659.patch, 534 bytes (added by pratikgandhi, 8 years ago)

Updated description text

  • 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        /**