From a613c5bcf6d69050fabef6e397b4ac4ecdce77f5 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Mon, 21 Dec 2009 00:21:00 +0000 Subject: [PATCH] Fix use of unspecified variable. --- includes/FeedsBatch.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/FeedsBatch.inc b/includes/FeedsBatch.inc index ae5595a2..c39ffd21 100644 --- a/includes/FeedsBatch.inc +++ b/includes/FeedsBatch.inc @@ -42,7 +42,7 @@ class FeedsImportBatch { feeds_include_library('http_request.inc', 'http_request'); $result = http_request_get($this->url); if ($result->code != 200) { - throw new Exception(t('Download of @url failed with code !code.', array('@url' => $url, '!code' => $result->code))); + throw new Exception(t('Download of @url failed with code !code.', array('@url' => $this->url, '!code' => $result->code))); } $this->raw = $result->data; } -- GitLab