X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=ref.php;h=f6e5f1913bfa20f027ebdf6be9d06e0493e6ca30;hb=8e4b45208df786e67751a6830afe84635b2ca3c5;hp=700491851a4bff59c4f262a928dfac4165e3463c;hpb=9f6c30cc0e06098171d773d671292081ecee3d29;p=mailer.git diff --git a/ref.php b/ref.php index 700491851a..f6e5f1913b 100644 --- a/ref.php +++ b/ref.php @@ -1,7 +1,7 @@ 0) { +if (isValidUserId(determineReferalId())) { // Test if nickname or numeric id if (isExtensionActive('nickname')) { // Nickname in URL, so load the id @@ -66,7 +68,7 @@ if (determineReferalId() > 0) { // Do we have an entry? if (!isUserDataValid()) { // No entry, so no referal id - $GLOBALS['refid'] = getConfig('def_refid'); + $GLOBALS['refid'] = getDefRefid(); } // END - if } } // END - if @@ -75,10 +77,10 @@ if (determineReferalId() > 0) { setSession('refid', determineReferalId()); // Is the refid valid? - if (determineReferalId() > 0) { + if (isValidUserId(determineReferalId())) { // 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__); + array(makeDatabaseUserId(determineReferalId())), __FILE__, __LINE__); // Base URL for redirection switch (getConfig('refid_target')) { @@ -87,7 +89,7 @@ if (determineReferalId() > 0) { break; case 'index': - $URL = 'index.php'; + $URL = 'modules.php?module=index'; break; } // END - switch } // END - if