X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=467f21827a2b8a918da9294fed70edaf8eb94ba9;hp=600eae105304340a7a8d000062b7b800f14500f8;hb=b56eadb18a023f4d2d712e8936b4dc1ad31fd580;hpb=e6e3183f794b385f5acc38b371c220cc35cdac38;ds=sidebyside diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 600eae1053..467f21827a 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -49,6 +49,11 @@ require_once(PATH."inc/db/lib.php"); // Load general functions require_once(PATH."inc/functions.php"); // Non-database functions + +// Load more include files +require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database + +// Load extensions and language require_once(PATH."inc/extensions.php"); require_once(PATH."inc/language.php"); @@ -69,7 +74,7 @@ if ((empty($MySQL['login'])) && (!defined('mxchange_installing')) && (!isset($_G } // Check if this file is writeable or read-only and warn the user -if ((!defined('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed'))) { +if ((!isBooleanConstantAndTrue('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed'))) { // Check for write-permission for config.php and inc directory if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index"; if (($GLOBALS['module'] != "admin") && (isBooleanConstantAndTrue('admin_registered')) && (!isset($_SERVER['WINDIR']))) { @@ -91,9 +96,6 @@ if ((!defined('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_ins // Is it a valid resource? if ($db === true) { - // Load more include files - require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database - // Load configuration stuff $_CONFIG = LOAD_CONFIG();