]> git.mxchange.org Git - mailer.git/blobdiff - ref.php
Extension ext-coupon continued, naming convention, many improvements:
[mailer.git] / ref.php
diff --git a/ref.php b/ref.php
index 3b5fd8008581fb5c65397679cab2199b4f577e6f..4eb1fe139f7e9fb5bd3e0dd4b5390293f216c180 100644 (file)
--- a/ref.php
+++ b/ref.php
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * 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 *
@@ -49,7 +49,7 @@ require('inc/config-global.php');
 setContentType('text/html');
 
 // No refid by default
-$URL = 'modules.php?module=index';
+$url = 'modules.php?module=index';
 
 if (isValidUserId(determineReferalId())) {
        // Test if nickname or numeric id
@@ -85,18 +85,18 @@ if (isValidUserId(determineReferalId())) {
                // Base URL for redirection
                switch (getConfig('refid_target')) {
                        case 'register':
-                               $URL = 'modules.php?module=index&what=register';
+                               $url = 'modules.php?module=index&what=register';
                                break;
 
                        case 'index':
-                               $URL = 'modules.php?module=index';
+                               $url = 'modules.php?module=index';
                                break;
                } // END - switch
        } // END - if
 } // END - if
 
 // Load the URL
-redirectToUrl($URL);
+redirectToUrl($url);
 
 // [EOF]
 ?>