From: quix0r 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=47bebf87322bc275979042cf45978bd68acce7dd;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('&', '&', $URL)); } else {