X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ref.php;h=81d8df238c263bfdf51c2752644e0482c6dc1477;hb=102403bf54b89ba5ca9a97bb8ba834c94ebe7a07;hp=4eb1fe139f7e9fb5bd3e0dd4b5390293f216c180;hpb=f7d1229840cdae4ba22fdf375265bca4fb4a2d32;p=mailer.git diff --git a/ref.php b/ref.php index 4eb1fe139f..81d8df238c 100644 --- a/ref.php +++ b/ref.php @@ -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 * @@ -51,48 +51,22 @@ setContentType('text/html'); // No refid by default $url = 'modules.php?module=index'; -if (isValidUserId(determineReferalId())) { - // Test if nickname or numeric id - if (isExtensionActive('nickname')) { - // Nickname in URL, so load the id - fetchUserData(determineReferalId(), 'nickname'); +// Check for determined referal id +if ((isExtensionActive('user')) && (isReferalIdValid()) && (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(makeZeroToNull(determineReferalId())), __FILE__, __LINE__); - // Do we have an entry? - if (isUserDataValid()) { - // Load userid - $GLOBALS['refid'] = getUserData('userid'); - } else { - // So do we have a userid? - fetchUserData(determineReferalId()); + // Base URL for redirection + switch (getConfig('refid_target')) { + case 'register': + $url = 'modules.php?module=index&what=register'; + break; - // Do we have an entry? - if (!isUserDataValid()) { - // No entry, so no referal id - $GLOBALS['refid'] = getDefRefid(); - } // END - if - } - } // END - if - - // Update session - setSession('refid', determineReferalId()); - - // 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(makeDatabaseUserId(determineReferalId())), __FILE__, __LINE__); - - // 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