Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-themes-list-table.php

    r46390 r47122  
    301301     */
    302302    public function search_theme( $theme ) {
    303         // Search the features
     303        // Search the features.
    304304        foreach ( $this->features as $word ) {
    305305            if ( ! in_array( $word, $theme->get( 'Tags' ) ) ) {
     
    308308        }
    309309
    310         // Match all phrases
     310        // Match all phrases.
    311311        foreach ( $this->search_terms as $word ) {
    312312            if ( in_array( $word, $theme->get( 'Tags' ) ) ) {
Note: See TracChangeset for help on using the changeset viewer.