X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=dd7998d02438c1b4a83eb1b6907a347785551299;hb=c9b17a86f4d62b50b8b1fbe6f9d88e6092430526;hp=8243597d6629cef12ed24e8bb615e0c7d14ee839;hpb=8ec82aa8ce39be68e4087a26f9763b86fc124ed4;p=mailer.git diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 8243597d66..dd7998d024 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -72,6 +70,9 @@ initFatalMessages(); // Init message system initMessages(); +// Init repository data sub-system +initRepositoryData(); + // Enable HTML templates by default enableTemplateHtml(); @@ -136,7 +137,7 @@ if ((!isInstalling()) && (!isInstallationPhase())) { setConfigEntry('OUTPUT_MODE', 'direct'); // This hack prevents a backtrace in CSS output - if (getScriptOutputMode() == 1) { + if (isCssOutputMode()) { // Problem with config so set output mode setConfigEntry('OUTPUT_MODE', 'render'); } // END - if @@ -145,20 +146,14 @@ if ((!isInstalling()) && (!isInstallationPhase())) { setConfigEntry('_DB_TYPE', 'mysql3'); // Include more - foreach (array('inc/db/lib.php','inc/databases.php','inc/session.php','inc/versions.php','inc/install-functions.php','inc/load_config.php') as $inc) { + foreach (array('db/lib','databases','session','versions','install-functions','load_config','load_cache') as $inc) { // Load the include - loadIncludeOnce($inc); + loadIncludeOnce('inc/' . $inc . '.php'); } // END - foreach - // Load cache - loadIncludeOnce('inc/load_cache.php'); - - // Run the init filter chain - runFilterChain('init'); - - // Are we installation routine? - if ((!isInstalling()) && (getScriptOutputMode() != 1) && (getScriptOutputMode() != -1)) { - // You have to install first! + // Check wether we are in installation routine + if ((!isInstalling()) && (!isCssOutputMode()) && (!isRawOutputMode())) { + // Redirect to the URL redirectToUrl('install.php'); } // END - if }