X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=43f5f11e8fc0641c31faf233e7752b4a152a8966;hp=0e94e1e2366133781d49ba93bea87d7e44132a38;hb=c4be539d249046d6d64d2181c3a1e898fe9a64f5;hpb=90660845a4159b98d65a1c1049ddf68fb8ddd613 diff --git a/ref.php b/ref.php index 0e94e1e236..43f5f11e8f 100644 --- a/ref.php +++ b/ref.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Weiterleitungsscript fuer die Referral-Links * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,11 +34,11 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['startTime'] = microtime(true); +$GLOBALS['__start_time'] = microtime(TRUE); // Set module -$GLOBALS['__module'] = 'ref'; -$GLOBALS['output_mode'] = -1; +$GLOBALS['__module'] = 'ref'; +$GLOBALS['__output_mode'] = -1; // Load the required file(s) require('inc/config-global.php'); @@ -55,10 +50,9 @@ setContentType('text/html'); $url = 'modules.php?module=index'; // Check for determined referral id -if ((isExtensionActive('user')) && (isReferralIdValid()) && (isValidUserId(determineReferralId()))) { - // Update ref counter - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_clicks`=`ref_clicks`+1 WHERE `userid`=%s LIMIT 1", - array(convertZeroToNull(determineReferralId())), __FILE__, __LINE__); +if ((isExtensionActive('user')) && (isValidReferralId()) && (isValidId(determineReferralId()))) { + // Run filter chain for updating referral data + runFilterChain('update_referral_data'); // Base URL for redirection switch (getConfig('refid_target')) { @@ -69,6 +63,10 @@ if ((isExtensionActive('user')) && (isReferralIdValid()) && (isValidUserId(deter case 'index': $url = 'modules.php?module=index'; break; + + default: // Is not valid + reportBug(__FILE__, __LINE__, 'Invalid refid target ' . getConfig('refid_target') . ' detected.'); + break; } // END - switch } // END - if