Changeset 22330
- Timestamp:
- 10/30/2012 08:48:35 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/class-feed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-feed.php
r21652 r22330 90 90 } 91 91 } else { 92 if ( ! $this->body = file_get_contents($url) ) {92 if ( ! file_exists($url) || ( ! $this->body = file_get_contents($url) ) ) { 93 93 $this->error = 'file_get_contents could not read the file'; 94 94 $this->success = false;
Note: See TracChangeset
for help on using the changeset viewer.