From: Roland Häder <roland@mxchange.org>
Date: Sat, 19 Jun 2010 02:02:18 +0000 (+0000)
Subject: Fix for missing http_status element in click.php
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a82b69abcd219f6772f4e6e89654e345b816abab;p=mailer.git

Fix for missing http_status element in click.php
---

diff --git a/inc/functions.php b/inc/functions.php
index a8935e8c2c..2edf08a02c 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -1000,6 +1000,9 @@ function redirectToUrl ($URL, $allowSpider = true) {
 		// Clear own output buffer
 		$GLOBALS['output'] = '';
 
+		// Set header
+		setHttpStatus('302 Found');
+
 		// Load URL when headers are not sent
 		sendHeader('Location: '.str_replace('&amp;', '&', $URL));
 	} else {