Renamed some all-capitalized variables small
[mailer.git] / sponsor_confirm.php
index ea061a4d64afe4234dab656d3afc26dec7ff6719..efa72fcc5ff2042c9e36d49c2cb77bbeaa48cf5f 100644 (file)
@@ -50,16 +50,16 @@ require('inc/config-global.php');
 setContentType('text/html');
 
 // No hash provided by default
-$URL = 'modules.php?module=index';
+$url = 'modules.php?module=index';
 
 // Is there a hash?
 if (isGetRequestParameterSet('hash')) {
        // We have an refid here. So we simply add it
-       $URL = 'modules.php?module=index&what=sponsor_login&hash=' . getRequestParameter('hash');
+       $url = 'modules.php?module=index&what=sponsor_login&hash=' . getRequestParameter('hash');
 } // END - if
 
 // Load the URL
-redirectToUrl($URL);
+redirectToUrl($url);
 
 // [EOF]
 ?>