From: Roland Häder Date: Mon, 23 Nov 2009 14:39:33 +0000 (+0000) Subject: Fix for missing content type X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=0bc147b8bab4706803309eab2d8b05042462efe6 Fix for missing content type --- diff --git a/click.php b/click.php index 5cdbd9f2d9..703caf6284 100644 --- a/click.php +++ b/click.php @@ -46,9 +46,15 @@ $GLOBALS['output_mode'] = -1; // Load the required file(s) require('inc/config-global.php'); +// Set content type, this is required for search engines +setContentType('text/html'); + +// Check required parameters if (((isGetRequestElementSet('user')) || (isGetRequestElementSet('reseller'))) && (isGetRequestElementSet('banner'))) { // Update clicks counter... - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET clicks=clicks+1 WHERE `id`=%s LIMIT 1", array(bigintval(getRequestElement('banner'))), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refbanner` SET `clicks`=`clicks`+1 WHERE `id`=%s LIMIT 1", array(bigintval(getRequestElement('banner'))), __FILE__, __LINE__); + + // A line has been updated? if (SQL_AFFECTEDROWS() == 1) { if (isGetRequestElementSet('user')) { redirectToUrl('ref.php?refid=' . bigintval(getRequestElement('user')));