X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=6b0302c17adcc8514e727398e118e77ec6a63ff3;hp=b1a99dd2f0244892617e6d83699d6eb23829c987;hb=8ed6af64e47d41cb94b4f9b57a046f3d9089375f;hpb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8 diff --git a/ref.php b/ref.php index b1a99dd2f0..6b0302c17a 100644 --- a/ref.php +++ b/ref.php @@ -6,9 +6,9 @@ * -------------------------------------------------------------------- * * File : ref.php * * -------------------------------------------------------------------- * - * Short description : Redirection for the referal link * + * Short description : Redirection for the referral link * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Weiterleitungsscript fuer die Referal-Links * + * Kurzbeschreibung : Weiterleitungsscript fuer die Referral-Links * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -38,9 +38,12 @@ // Load security stuff here require('inc/libs/security_functions.php'); +// Init start time +$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'); @@ -49,54 +52,28 @@ require('inc/config-global.php'); setContentType('text/html'); // No refid by default -$URL = 'modules.php?module=index'; - -if (determineReferalId() != 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()); - - // 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()); +$url = 'modules.php?module=index'; - // Is the refid valid? - 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__); +// 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(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 = 'modules.php?module=index'; - 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] ?>