X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ref.php;h=7f0d0c7b2e83c9aa1c7e3445d9517d670673a84a;hb=96d8f54d3fee1d51c38dd6b79c28215f7f5c83ec;hp=95e6400a434320925e45b232f6372166ff0f4954;hpb=4f5475a4f382f6488bedca621cca9243bc72f44b;p=mailer.git diff --git a/ref.php b/ref.php index 95e6400a43..7f0d0c7b2e 100644 --- a/ref.php +++ b/ref.php @@ -1,24 +1,23 @@ 0) { - // Update ref counter - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_clicks`=`ref_clicks`+1 WHERE `userid`=%s LIMIT 1", - array(bigintval($ref)), __FILE__, __LINE__); - } // END - if +// No refid by default +$url = 'modules.php?module=index'; + +// Check for determined referral id +if ((isExtensionActive('user')) && (isReferralIdValid()) && (isValidUserId(determineReferralId()))) { + // Run filter chain for updating referral data + runFilterChain('update_referral_data'); + + // Base URL for redirection + switch (getConfig('refid_target')) { + case 'register': + $url = 'modules.php?module=index&what=register'; + break; + + 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 // Load the URL -redirectToUrl($URL); +redirectToUrl($url); // [EOF] ?>