Making WordPress.org

Ticket #403: class.bbpress-plugins-tracker.diff

File class.bbpress-plugins-tracker.diff, 591 bytes (added by joostdevalk, 10 years ago)

Parser patch

  • class.bbpress-plugins-tracker.php

     
    293293                                break;
    294294
    295295                        $readme = array();
    296                         if ( !$readme_files = Automattic_Paths::search( $export, 'readme.txt' ) )
    297                                 break;
     296                        if ( !$readme_files = Automattic_Paths::search( $export, 'readme.txt' ) ) {
     297                                if ( !$readme_files = Automattic_Paths::search( $export, 'readme.md' ) ) {
     298                                        break;
     299                                }
     300                        }
    298301
    299302                        $readme_file = $readme_files[0];
    300303