Changeset 7102 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-author-card.php
- Timestamp:
- 04/12/2018 01:00:56 PM (7 years ago)
- 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 151 151 $note_meta = sprintf( 152 152 /* 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' ), 154 154 $note->moderator, 155 155 $note->date … … 157 157 158 158 $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"; 162 162 } 163 163 echo '</ul>'; … … 305 305 } 306 306 307 echo '</span></li>' ;307 echo '</span></li>' . "\n"; 308 308 } 309 309 echo '</ul>';
Note: See TracChangeset
for help on using the changeset viewer.