Changeset 13783
- Timestamp:
- 06/07/2024 02:54:04 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/readme/class-parser.php
r13618 r13783 366 366 $trimmed = trim( $line ); 367 367 if ( empty( $trimmed ) ) { 368 $this->short_description .= "\n";369 368 continue; 370 369 } … … 372 371 ( '#' === $trimmed[0] && isset( $trimmed[1] ) && '#' === $trimmed[1] ) 373 372 ) { 374 375 373 // Stop after any Markdown heading. 376 374 array_unshift( $contents, $line ); … … 378 376 } 379 377 380 $this->short_description .= $line . "\n";378 $this->short_description .= $line . ' '; 381 379 } 382 380 $this->short_description = trim( $this->short_description );
Note: See TracChangeset
for help on using the changeset viewer.