X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=43f5f11e8fc0641c31faf233e7752b4a152a8966;hp=700491851a4bff59c4f262a928dfac4165e3463c;hb=922091a1d2878a65f702ab1a858d3425dd1ca594;hpb=9f6c30cc0e06098171d773d671292081ecee3d29 diff --git a/ref.php b/ref.php index 700491851a..43f5f11e8f 100644 --- a/ref.php +++ b/ref.php @@ -1,24 +1,18 @@ 0) { - // Test if nickname or numeric id - if (isExtensionActive('nickname')) { - // Nickname in URL, so load the id - fetchUserData(determineReferalId(), 'nickname'); - - // Do we have an entry? - if (isUserDataValid()) { - // Load userid - $GLOBALS['refid'] = getUserData('userid'); - } else { - // So do we have a userid? - fetchUserData(determineReferalId()); +// Set content type for e.g. search engines +setContentType('text/html'); - // Do we have an entry? - if (!isUserDataValid()) { - // No entry, so no referal id - $GLOBALS['refid'] = getConfig('def_refid'); - } // END - if - } - } // END - if +// No refid by default +$url = 'modules.php?module=index'; - // Update session - setSession('refid', determineReferalId()); +// Check for determined referral id +if ((isExtensionActive('user')) && (isValidReferralId()) && (isValidId(determineReferralId()))) { + // Run filter chain for updating referral data + runFilterChain('update_referral_data'); - // Is the refid valid? - if (determineReferalId() > 0) { - // Update ref counter - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_clicks`=`ref_clicks`+1 WHERE `userid`=%s LIMIT 1", - array(determineReferalId()), __FILE__, __LINE__); + // Base URL for redirection + switch (getConfig('refid_target')) { + case 'register': + $url = 'modules.php?module=index&what=register'; + break; - // 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; - case 'index': - $URL = 'index.php'; - break; - } // END - switch - } // END - if + 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] ?>