]> git.mxchange.org Git - mailer.git/blobdiff - inc/config-global.php
fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / config-global.php
index 6b193f4b47126dd03719a9ae36f38b7b05e0a47e..e86fd7328d269b9d769274ce15b48e6416ce2acf 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/03/2009 *
- * ===============                              Last change: 04/03/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 04/03/2009 *
+ * ===================                          Last change: 04/03/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : config-global.php                                *
@@ -59,9 +59,9 @@ error_reporting(E_ALL | E_STRICT);
 // Detect path
 $PATH = str_replace("\\", '/', substr(dirname(__FILE__), 0, -3));
 
-// Configuration include file
+// Some very important function includes
 foreach (array('config','wrapper','inc','stats') as $inc) {
-       require($PATH . 'inc/' . $inc . '-functions.php');
+       include($PATH . 'inc/' . $inc . '-functions.php');
 } // END - foreach
 
 // Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
@@ -84,7 +84,7 @@ setConfigEntry('VERSION', 'v0.2.1');
 setConfigEntry('AUTHOR' , 'Roland H&auml;der');
 
 // CFG: TITLE
-setConfigEntry('TITLE', 'MXChange - Mail Exchange');
+setConfigEntry('TITLE', 'Mailer Project');
 
 // CFG: COPY
 setConfigEntry('COPY', 'Copyright &copy; 2003 - 2009, by Roland H&auml;der');
@@ -95,6 +95,9 @@ setConfigEntry('CACHE_PATH', getConfig('PATH') . 'inc/cache/');
 // CFG: STATS-ENABLED (temporary tables, if your database crashs all is gone)
 setConfigEntry('STATS_ENABLED', 'Y');
 
+// GLOBAL: DEBUG-TEMPLATE-CACHE
+setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
+
 // Connect to the MySQL database...
 loadIncludeOnce('inc/mysql-connect.php');