Don't use convertZeroToNull() here as it makes no sense
[mailer.git] / ref.php
diff --git a/ref.php b/ref.php
index 0e94e1e2366133781d49ba93bea87d7e44132a38..6b0302c17adcc8514e727398e118e77ec6a63ff3 100644 (file)
--- a/ref.php
+++ b/ref.php
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 require('inc/libs/security_functions.php');
 
 // Init start time
-$GLOBALS['startTime'] = microtime(true);
+$GLOBALS['__start_time'] = microtime(true);
 
 // Set module
-$GLOBALS['__module'] = 'ref';
-$GLOBALS['output_mode'] = -1;
+$GLOBALS['__module']      = 'ref';
+$GLOBALS['__output_mode'] = -1;
 
 // Load the required file(s)
 require('inc/config-global.php');
@@ -58,7 +58,7 @@ $url = 'modules.php?module=index';
 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(convertZeroToNull(determineReferralId())), __FILE__, __LINE__);
+               array(determineReferralId()), __FILE__, __LINE__);
 
        // Base URL for redirection
        switch (getConfig('refid_target')) {