X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=59fe143ffc9056c664c9083a010df4155fef4c64;hp=f3fa2597bb8842c1952d0d279dfc4079ab8c421c;hb=bb902775e3ba4ef820a764fc5f3c725a8f03e45c;hpb=434643a428ccc9d78695347eef5a456342e9f114 diff --git a/ref.php b/ref.php index f3fa2597bb..59fe143ffc 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 * @@ -47,12 +46,12 @@ $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 = '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 @@ -78,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')) {