X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ref.php;h=52a353a255f9448faeea0f001a67edfe382c93d4;hb=3ea8eee0f8525204eb0fac9ade0a2e4d0fdb7a3c;hp=0ee71430c87d7f125de81ccfb82e88168c6bc38f;hpb=02a212e4758d0ee6cd970c4ea9e51ca603bd3b52;p=mailer.git diff --git a/ref.php b/ref.php index 0ee71430c8..52a353a255 100644 --- a/ref.php +++ b/ref.php @@ -14,10 +14,9 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -47,57 +46,31 @@ $GLOBALS['output_mode'] = -1; require('inc/config-global.php'); // Set content type for e.g. search engines -if (isSpider()) setContentType('text/html'); +setContentType('text/html'); // No refid by default -$URL = 'index.php'; +$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'); +// 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'] = getConfig('def_refid'); - } // END - if - } - } // END - if - - // Update session - setSession('refid', determineReferalId()); - - // 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__); - - // 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] ?>