X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=f3308e2ee0a96f5bcf0f2c11657bd1a29de9ce66;hp=52a353a255f9448faeea0f001a67edfe382c93d4;hb=15b33f67108fcf717fc56fc9cb931f7c22a69737;hpb=0851db137e420b90617f47b77de2302e770f5f02 diff --git a/ref.php b/ref.php index 52a353a255..f3308e2ee0 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:: $ * @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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,6 +38,9 @@ // Load security stuff here require('inc/libs/security_functions.php'); +// Init start time +$GLOBALS['startTime'] = microtime(true); + // Set module $GLOBALS['module'] = 'ref'; $GLOBALS['output_mode'] = -1; @@ -51,11 +54,11 @@ setContentType('text/html'); // No refid by default $url = 'modules.php?module=index'; -// Check for determined referal id -if ((isExtensionActive('user')) && (isReferalIdValid()) && (isValidUserId(determineReferalId()))) { +// 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(makeZeroToNull(determineReferalId())), __FILE__, __LINE__); + array(convertZeroToNull(determineReferralId())), __FILE__, __LINE__); // Base URL for redirection switch (getConfig('refid_target')) {