From d7f4229834a4f15d4c918b65b2103442686f2a2b Mon Sep 17 00:00:00 2001
From: elliotttf <elliotttf@61601.no-reply.drupal.org>
Date: Wed, 8 Feb 2012 13:16:41 -0500
Subject: [PATCH] Issue #1427642 by elliotttf: Fixed Use drupal_exit() rather
 than exit() in PuSH/FeedsHTTPFetcher callbacks.

---
 libraries/PuSHSubscriber.inc | 4 ++--
 plugins/FeedsHTTPFetcher.inc | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libraries/PuSHSubscriber.inc b/libraries/PuSHSubscriber.inc
index 5f7cbc9c..c5926def 100644
--- a/libraries/PuSHSubscriber.inc
+++ b/libraries/PuSHSubscriber.inc
@@ -219,12 +219,12 @@ class PuSHSubscriber {
       if ($verify) {
         header('HTTP/1.1 200 "Found"', NULL, 200);
         print $_GET['hub_challenge'];
-        exit();
+        drupal_exit();
       }
     }
     header('HTTP/1.1 404 "Not Found"', NULL, 404);
     $this->log('Could not verify subscription.', 'error');
-    exit();
+    drupal_exit();
   }
 
   /**
diff --git a/plugins/FeedsHTTPFetcher.inc b/plugins/FeedsHTTPFetcher.inc
index b00c5f4f..1b003952 100644
--- a/plugins/FeedsHTTPFetcher.inc
+++ b/plugins/FeedsHTTPFetcher.inc
@@ -79,12 +79,12 @@ class FeedsHTTPFetcher extends FeedsFetcher {
       catch (Exception $e) {
         // In case of an error, respond with a 503 Service (temporary) unavailable.
         header('HTTP/1.1 503 "Not Found"', NULL, 503);
-        exit();
+        drupal_exit();
       }
     }
     // Will generate the default 200 response.
     header('HTTP/1.1 200 "OK"', NULL, 200);
-    exit();
+    drupal_exit();
   }
 
   /**
-- 
GitLab