Changeset 2992 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-readme-parser.php
- Timestamp:
- 04/21/2016 11:48:48 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-readme-parser.php
r2985 r2992 58 58 59 59 protected function parse_readme( $file ) { 60 $contents = file( $file ); 60 $contents = file_get_contents( $file ); 61 $contents = preg_split( '!\R!', $contents ); 61 62 62 63 $contents = array_map( array( $this, 'strip_newlines' ), $contents );
Note: See TracChangeset
for help on using the changeset viewer.