A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / modules.php
index ae7948fe925fecc02de1fd34cbee5d45cf6cb9ab..f079d6e11a47819e032cad62f379c14bbffc82a9 100644 (file)
 //xdebug_start_trace();
 
 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require("inc/libs/security_functions.php");
+require('inc/libs/security_functions.php');
 
 // Init "action" and "what"
 $GLOBALS['startTime'] = microtime(true);
 $GLOBALS['output_mode'] = 0;
-$GLOBALS['what']   = "";
-$GLOBALS['action'] = "";
-$GLOBALS['module'] = "";
+$GLOBALS['what']   = '';
+$GLOBALS['action'] = '';
+$GLOBALS['module'] = '';
 
 // Needed include files
-require("inc/config.php");
+require('inc/config.php');
 
-// Fix missing module to "index"
-if (!REQUEST_ISSET_GET(('module'))) REQUEST_SET_GET('module', "index");
+// Fix missing module to 'index'
+if (!REQUEST_ISSET_GET('module')) REQUEST_SET_GET('module', 'index');
 
 // Check if logged in
 if (IS_MEMBER()) {
@@ -63,16 +63,16 @@ if (IS_MEMBER()) {
        if (SQL_NUMROWS($result) == 1) {
                // Load surname and family's name and build the username
                list($s, $f) = SQL_FETCHROW($result);
-               $username = $s." ".$f;
+               $username = $s.' '.$f;
 
                // Additionally admin?
                if (IS_ADMIN()) {
                        // Add it
-                       $username .= " ({--_ADMIN_SHORT--})";
+                       $username .= ' ({--_ADMIN_SHORT--})';
                } // END - if
        } else {
                // Hmmm, logged in and no valid userid?
-               $username = "<em>{--_UNKNOWN--}</em>";
+               $username = '<em>{--_UNKNOWN--}</em>';
 
                // Destroy session
                destroy_user_session();
@@ -92,11 +92,11 @@ if (IS_MEMBER()) {
 }
 
 // The header file
-LOAD_INC_ONCE("inc/header.php");
+LOAD_INC_ONCE('inc/header.php');
 
 // Modules are by default not valid!
-$MOD_VALID = false; $check = "failed";
-if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) {
+$MOD_VALID = false; $check = 'failed';
+if ((getConfig('maintenance') == 'Y') && (!IS_ADMIN()) && ($GLOBALS['module'] != 'admin')) {
        // Maintain mode is active and you are no admin
        addFatalMessage(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE'));
 } elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) {
@@ -107,9 +107,9 @@ if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] !=
        $check = checkModulePermissions($GLOBALS['module']);
        switch ($check)
        {
-       case "admin_only":
-       case "mem_only":
-       case "done":
+       case 'admin_only':
+       case 'mem_only':
+       case 'done':
                // Does the module exists on local file system?
                if ((FILE_READABLE(constant('__MODULE'))) && (getTotalFatalErrors() == 0)) {
                        // Module is valid, active and located on the local disc...
@@ -122,11 +122,11 @@ if ((getConfig('maintenance') == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] !=
                }
                break;
 
-       case "404":
+       case '404':
                addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module']));
                break;
 
-       case "locked":
+       case 'locked':
                if (!FILE_READABLE(constant('__MODULE'))) {
                        // Module does addionally not exists
                        addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), $GLOBALS['module']));
@@ -156,7 +156,7 @@ if (($MOD_VALID) && (defined('__MODULE'))) {
 } // END - if
 
 // Next-to-end add the footer
-LOAD_INC_ONCE("inc/footer.php");
+LOAD_INC_ONCE('inc/footer.php');
 
 //
 ?>