X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=3514b82a4b5cab5e7796fdc1456a14307f497b25;hp=5cd6a3cf45277990ba93d498c8da49ef1fe61e85;hb=5942a52ee1b26fdf495dc9c0946d616afc649607;hpb=e5dffd4249c97200cbad02f3f4eaf5c373fdb89a diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 5cd6a3cf45..3514b82a4b 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -10,11 +10,6 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Verbindet zu Ihrer Datenbank * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * @@ -58,7 +53,6 @@ foreach ( array( 'sql', 'expression', 'filter', - 'revision', 'extensions') as $lib) { // Add it @@ -97,9 +91,6 @@ if (!isset($GLOBALS['__header_sent'])) { // Init fatal messages initFatalMessages(); -// Init repository data sub-system -initRepositoryData(); - // Enable HTML templates by default enableTemplateHtml(); @@ -130,7 +121,7 @@ if ((!isInstaller()) && (isInstalled())) { } // END - if // CFG: DATABASE-TYPE - setConfigEntry('_DB_TYPE', 'mysql3'); + setConfigEntry('_DB_TYPE', 'mysql'); // Set link as down unsetSqlLinkUp(__FILE__, __LINE__); @@ -141,8 +132,11 @@ if ((!isInstaller()) && (isInstalled())) { // Init message system initMessages(); + // Init session + initSession(); + // Include more - foreach (array('databases', 'session', 'versions', 'install-functions', 'load_config', 'load_cache') as $inc) { + foreach (array('databases', 'install-functions', 'load_config', 'load_cache') as $inc) { // Load include file loadIncludeOnce('inc/' . $inc . '.php'); } // END - foreach