Changeset 5438
- Timestamp:
- 05/10/2007 09:21:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-admin/link-import.php
r5011 r5438 94 94 95 95 if ( isset($opml_url) && $opml_url != '' ) { 96 $opml = wp_remote_fopen($opml_url); 96 if ( $blogrolling === true ) { 97 $opml = wp_remote_fopen($opml_url); 98 } else { 99 $opml = file_get_contents($opml_url); 100 } 101 97 102 include_once('link-parse-opml.php'); 98 103 … … 119 124 120 125 if ( ! $blogrolling ) 126 apply_filters( 'wp_delete_file', $opml_url); 121 127 @unlink($opml_url); 122 128 ?>
Note: See TracChangeset
for help on using the changeset viewer.