From 5664ae73ca4f27725b2a43e92c1c9d0098a2a717 Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Wed, 3 Mar 2010 18:38:57 +0000
Subject: [PATCH] Properly encode path.

---
 plugins/FeedsFetcher.inc | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/plugins/FeedsFetcher.inc b/plugins/FeedsFetcher.inc
index 31a61558..4a42ccf0 100644
--- a/plugins/FeedsFetcher.inc
+++ b/plugins/FeedsFetcher.inc
@@ -49,10 +49,11 @@ abstract class FeedsFetcher extends FeedsPlugin {
    *   Path for this fetcher/source combination.
    */
   public function path($feed_nid = 0) {
-    if ($feed_nid) {
-      return urlencode('feeds/importer/'. $this->id .'/'. $feed_nid);
+    $id = urlencode($this->id);
+    if ($feed_nid && is_numeric($feed_nid)) {
+      return "feeds/importer/$id/$feed_nid";
     }
-    return urlencode('feeds/importer/'. $this->id);
+    return "feeds/importer/$id";
   }
 
   /**
-- 
GitLab