X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=d29d479a65eca35f0e4805e32c009356c8f1c965;hp=d799dedfebab43ae84a41f34f886dc9da390552b;hb=3e2e8ea82079f4e76b8add38efccf6c24afda507;hpb=013448f0470ca36ab15b888928e2127e6da7d9b6 diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index d799dedfeb..d29d479a65 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -115,9 +115,6 @@ if ((!isInstalling()) && (!isInstallationPhase())) { // Check module for permissions $checkModule = checkModulePermissions(); - // Cound module here - countModuleHit(getModule()); - // Admin module should be accessable by guests to login if ((getModule() == 'admin') && ($checkModule == 'admin_only')) { // This is fine and can be ignored @@ -149,13 +146,13 @@ if ((!isInstalling()) && (!isInstallationPhase())) { setConfigEntry('OUTPUT_MODE', 'direct'); // This hack prevents a backtrace in CSS output - if (getOutputMode() == '1') { + if (getOutputMode() == 1) { // Problem with config so set output mode setConfigEntry('OUTPUT_MODE', 'render'); } // END - if // Set other missing variables - if (!isOutputModeSet()) setOutputMode('0'); + if (!isOutputModeSet()) setOutputMode(0); // Include more foreach (array('inc/databases.php','inc/db/lib.php','inc/session.php','inc/versions.php','inc/install-functions.php','inc/load_config.php') as $inc) { @@ -167,7 +164,7 @@ if ((!isInstalling()) && (!isInstallationPhase())) { loadIncludeOnce('inc/load_config.php'); // Are we installation routine? - if ((!isInstalling()) && (getOutputMode() != '1') && (getOutputMode() != -1)) { + if ((!isInstalling()) && (getOutputMode() != 1) && (getOutputMode() != -1)) { // You have to install first! redirectToUrl('install.php'); } // END - if @@ -183,7 +180,7 @@ if ((!isInstalling()) && (!isInstallationPhase())) { } // Handle fatal errors -handleFatalErrors(); +runFilterChain('handle_fatal_errors'); // [EOF] ?>