Skip to content
Snippets Groups Projects
Commit 770cd0e0 authored by Alex Barth's avatar Alex Barth
Browse files

#851570 morningtime: Avoid trailing slashes when passing file paths to file_check_directory().

parent 893f9648
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
-------------------------------- --------------------------------
- #851570 morningtime: Avoid trailing slashes when passing file paths to
file_check_directory().
- #836090 andrewlevine, alex_b: Include mapping configuration in hash. - #836090 andrewlevine, alex_b: Include mapping configuration in hash.
- #853156 alex_b: Support real updates of terms. - #853156 alex_b: Support real updates of terms.
- #858684 alex_b: Fix notices when file not found. - #858684 alex_b: Fix notices when file not found.
......
...@@ -94,11 +94,11 @@ class FeedsImportBatch extends FeedsBatch { ...@@ -94,11 +94,11 @@ class FeedsImportBatch extends FeedsBatch {
*/ */
public function getFilePath() { public function getFilePath() {
if (!isset($this->file_path)) { if (!isset($this->file_path)) {
$dir = file_directory_path() .'/feeds/'; $dir = file_directory_path() .'/feeds';
if (!file_check_directory($dir, TRUE)) { if (!file_check_directory($dir, TRUE)) {
throw new Exception(t('Feeds directory either cannot be created or is not writable.')); throw new Exception(t('Feeds directory either cannot be created or is not writable.'));
} }
$dest = file_destination($dir . get_class($this) .'_'. drupal_get_token($this->url) .'_'. time(), FILE_EXISTS_RENAME); $dest = file_destination($dir . '/' . get_class($this) .'_'. drupal_get_token($this->url) .'_'. time(), FILE_EXISTS_RENAME);
$this->file_path = file_save_data($this->getRaw(), $dest); $this->file_path = file_save_data($this->getRaw(), $dest);
if($this->file_path === 0) { if($this->file_path === 0) {
throw new Exception(t('Cannot write content to %dest', array('%dest' => $dest))); throw new Exception(t('Cannot write content to %dest', array('%dest' => $dest)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment