Changeset 3477 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/class-import.php
- Timestamp:
- 06/19/2016 08:40:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/class-import.php
r3469 r3477 2 2 namespace WordPressdotorg\Plugin_Directory\CLI; 3 3 use WordPressdotorg\Plugin_Directory\Plugin_Directory; 4 use WordPressdotorg\Plugin_Directory\Readme _Parser;4 use WordPressdotorg\Plugin_Directory\Readme\Parser; 5 5 use WordPressdotorg\Plugin_Directory\Template; 6 6 use WordPressdotorg\Plugin_Directory\Tools; … … 301 301 302 302 $trunk_readme_file = self::PLUGIN_SVN_BASE . "/{$plugin_slug}/trunk/{$trunk_readme_file}"; 303 $trunk_readme = new Readme_Parser( $trunk_readme_file );303 $trunk_readme = new Parser( $trunk_readme_file ); 304 304 305 305 $stable_tag = $trunk_readme->stable_tag; … … 355 355 // The readme may not actually exist, but that's okay. 356 356 $readme = $this->find_readme_file( $tmp_dir . '/export' ); 357 $readme = new Readme_Parser( $readme );357 $readme = new Parser( $readme ); 358 358 359 359 // There must be valid plugin headers though.
Note: See TracChangeset
for help on using the changeset viewer.