]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-user.php
more in naming convention applied, you should better kill inc/cache/*.cache files...
[mailer.git] / inc / extensions / ext-user.php
index 9e311fb25a54cf422bf79dffe9f872f4247070cb..b0eb28ec9c3b350d68845ab68dd7c25614cc28f3 100644 (file)
@@ -51,7 +51,7 @@ case "register": // Do stuff when installtion is running (modules.php?module=adm
        $SQLs[] = "";
 
        // Load CSS-File?
-       $EXT_CSS = "Y";
+       $EXT_CSS = 'Y';
        break;
 
 case "remove": // Do stuff when removing extension
@@ -214,17 +214,17 @@ case "update": // Update an extension
        break;
 
 default: // Do stuff when extension is loaded
-       $DUMMY = LOAD_CONFIG("0");
-       $CONFIG['user_limit'] = $DUMMY['user_limit'];
-       $CONFIG['user_alpha'] = $DUMMY['user_alpha'];
-       unset($DUMMY);
+       $dummy = LOAD_CONFIG();
+       $_CONFIG['user_limit'] = $dummy['user_limit'];
+       $_CONFIG['user_alpha'] = $dummy['user_alpha'];
+       unset($dummy);
        break;
 }
 // Language file prefix
 $EXT_LANG_PREFIX = "user";
 
 // Extension is always active?
-$EXT_ALWAYS_ACTIVE = "Y";
+$EXT_ALWAYS_ACTIVE = 'Y';
 
 //
 ?>