diff --git a/plugins/FeedsFetcher.inc b/plugins/FeedsFetcher.inc index 78ca66b8c43112defb43e1f6ade3e3163b5f248e..f8e29559f7805ec414b607f18e79df0d085b54b7 100644 --- a/plugins/FeedsFetcher.inc +++ b/plugins/FeedsFetcher.inc @@ -93,7 +93,10 @@ class FeedsFetcherResult extends FeedsResult { if (substr($line, 0,3) == pack('CCC',0xef,0xbb,0xbf)) { $contents = file_get_contents($filepath); $contents = substr($contents, 3); - file_put_contents($filepath, $contents); + $status = file_put_contents($filepath, $contents); + if ($status === FALSE) { + throw new Exception(t('File @filepath is not writeable.', array('@filepath' => $filepath))); + } } return $filepath; }