X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ref.php;h=3b5fd8008581fb5c65397679cab2199b4f577e6f;hb=0e83dbfb5d6129bf7f56b1240a88dc82f170e025;hp=a36ed185285f60f946f4f02970db5fc8f0dd6f33;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/ref.php b/ref.php index a36ed18528..3b5fd80085 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, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,10 +45,13 @@ $GLOBALS['output_mode'] = -1; // Load the required file(s) require('inc/config-global.php'); +// Set content type for e.g. search engines +setContentType('text/html'); + // No refid by default -$URL = 'index.php'; +$URL = 'modules.php?module=index'; -if (determineReferalId() > 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