]> git.mxchange.org Git - mailer.git/blobdiff - inc/config.php
More XHTML-fied and extended header added to templates
[mailer.git] / inc / config.php
index c645e2e263cf3a6d8935606b22bd1980f5097f87..57fc45099709fb5b6fb0563bde87209ee193cd3f 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Ihre Konfigurationsdaten (MySQL)                 *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -122,9 +127,6 @@ define('DEBUG_MODE', false);
 // CFG: DEBUG-WEEKLY (comment in to test weekly reset, comment out to not test)
 //define('DEBUG_WEEKLY', true);
 
-// When we are not installing
-if (!defined('mxchange_installing')) define('mxchange_installing', false);
-
 // Your MySQL data (we don't like M$ SQL ;-) )
 $MySQL = array(
        // CFG: MYSQL-HOST
@@ -140,6 +142,9 @@ $MySQL = array(
 // CFG: MYSQL-PREIFX
 define('_MYSQL_PREFIX', "mxchange");
 
+// CFG: TABLE-TYPE
+define('_TABLE_TYPE', "MyISAM");
+
 // CFG: DATABASE-TYPE
 define('_DB_TYPE', "mysql3");
 
@@ -162,7 +167,7 @@ define('SSL_COOKIES', false);
 define('ENABLE_BACKLINK', true);
 
 // Connect to the MySQL database...
-LOAD_INC_ONCE("inc/mysql-connect.php");
+require(constant('PATH')."inc/mysql-connect.php");
 
 //
 ?>