Making WordPress.org


Ignore:
Timestamp:
04/12/2018 01:00:56 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Plugin Directory, Author Card: Remove stray closing tag.

See #3566.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php

    r7101 r7102  
    151151                    $note_meta = sprintf(
    152152                        /* translators: 1: user note author's display name, 2: date */
    153                         __( 'By %1$s on %2$s</a>', 'wporg-plugins' ),
     153                        __( 'By %1$s on %2$s', 'wporg-plugins' ),
    154154                        $note->moderator,
    155155                        $note->date
     
    157157
    158158                    $note_html  = apply_filters( 'comment_text', $note->text, null, array() );
    159                     $note_html .= sprintf( '<p class="textright">%s</p>' . "\n", $note_meta );
    160 
    161                     echo '<li>' . $note_html . '</li>';
     159                    $note_html .= sprintf( '<p class="textright">%s</p>', $note_meta );
     160
     161                    echo '<li>' . $note_html . '</li>' . "\n";
    162162                }
    163163                echo '</ul>';
     
    305305                    }
    306306
    307                     echo '</span></li>';
     307                    echo '</span></li>' . "\n";
    308308                }
    309309                echo '</ul>';
Note: See TracChangeset for help on using the changeset viewer.