Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / order.php
index 0e0fb4341d77e20deef9288d97a8f94425ddfaea..e70a2b03f15e02aadcdfc3e05186b239111b4b86 100644 (file)
@@ -38,7 +38,7 @@
  ************************************************************************/
 
 // Some security stuff...
-$URL = '';
+$url = '';
 if (!defined('__SECURITY')) {
        die();
 } elseif ((!isExtensionActive('order')) && (!isAdmin())) {
@@ -46,14 +46,14 @@ if (!defined('__SECURITY')) {
        return;
 } elseif (!isMember()) {
        // Sorry, no guest access!
-       $URL = 'modules.php?module=index';
+       $url = 'modules.php?module=index';
 } elseif (!isGetRequestParameterSet('order')) {
        // You cannot call this module directly!
-       $URL = 'modules.php?module=login&what=order';
+       $url = 'modules.php?module=login&what=order';
 }
 
 // When URL is empty nothing bad happend here
-if (empty($URL)) {
+if (empty($url)) {
        // Is the auto-send mechanism active or inactive?
        if (getConfig('autosend_active') == 'Y') {
                // Auto-send is active
@@ -124,7 +124,7 @@ if (empty($URL)) {
        }
 } else {
        // Redirect...
-       redirectToUrl($URL);
+       redirectToUrl($url);
 }
 
 // [EOF]