Making WordPress.org

Changeset 9828


Ignore:
Timestamp:
05/05/2020 03:59:55 PM (4 years ago)
Author:
ocean90
Message:

Plugin Directory, i18n import: Update to respect the new readme markup format introduced in [9826].

See #5191.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/i18n/class-readme-import.php

    r8413 r9828  
    8989        foreach ( $readme->sections as $section_key => $section_text ) {
    9090            if ( 'changelog' !== $section_key ) { // No need to scan non-translatable version headers in changelog.
    91                 if ( preg_match_all( '~<(h[3-4]|dt)[^>]*>(.+)</\1>~', $section_text, $matches ) ) {
     91                if ( preg_match_all( '~<(h[3-4]|dt)[^>]*>([^<].+)</\1>~', $section_text, $matches ) ) {
    9292                    if ( ! empty( $matches[2] ) ) {
    9393                        foreach ( $matches[2] as $text ) {
Note: See TracChangeset for help on using the changeset viewer.