X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=0e94e1e2366133781d49ba93bea87d7e44132a38;hp=700491851a4bff59c4f262a928dfac4165e3463c;hb=fc9a6d12d5143014c74aa0e9ed0810b93f20b118;hpb=9f6c30cc0e06098171d773d671292081ecee3d29 diff --git a/ref.php b/ref.php index 700491851a..0e94e1e236 100644 --- a/ref.php +++ b/ref.php @@ -1,24 +1,23 @@ 0) { - // Test if nickname or numeric id - if (isExtensionActive('nickname')) { - // Nickname in URL, so load the id - fetchUserData(determineReferalId(), 'nickname'); +// Set content type for e.g. search engines +setContentType('text/html'); - // Do we have an entry? - if (isUserDataValid()) { - // Load userid - $GLOBALS['refid'] = getUserData('userid'); - } else { - // So do we have a userid? - fetchUserData(determineReferalId()); - - // Do we have an entry? - if (!isUserDataValid()) { - // No entry, so no referal id - $GLOBALS['refid'] = getConfig('def_refid'); - } // END - if - } - } // END - if - - // Update session - setSession('refid', determineReferalId()); +// No refid by default +$url = 'modules.php?module=index'; - // 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__); +// 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__); - // 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 = 'index.php'; - break; - } // END - switch - } // END - if + case 'index': + $url = 'modules.php?module=index'; + break; + } // END - switch } // END - if // Load the URL -redirectToUrl($URL); +redirectToUrl($url); // [EOF] ?>