Renamed some all-capitalized variables small
[mailer.git] / ref.php
diff --git a/ref.php b/ref.php
index f6e5f1913bfa20f027ebdf6be9d06e0493e6ca30..4eb1fe139f7e9fb5bd3e0dd4b5390293f216c180 100644 (file)
--- a/ref.php
+++ b/ref.php
@@ -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]
 ?>