Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2074)
+++ branches/2.8.x/CHANGELOG	(revision 2075)
@@ -11,6 +11,9 @@
 ! = Update/Change
 ===============================================================================
 
+06 Jan-2014 Build 2075 Manuela v.d.Decken(DarkViper)
+! Installer and upgradescript will never start with php below 5.3.2
+# little correction for autoloading PHPMailer in install/save
 06 Jan-2014 Build 2074 Manuela v.d.Decken(DarkViper)
 + added new outputfilter to use OutputFilterDashboard
 06 Jan-2014 Build 2073 Manuela v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 2074)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 2075)
@@ -35,7 +35,14 @@
  * @description  xyz
  */
 include_once(dirname(__FILE__).'/framework/UpgradeHelper.php');
-
+// PHP less then 5.3.2 is prohibited ---
+if (version_compare(PHP_VERSION, '5.3.2', '<')) {
+    $sMsg = '<p style="color: #ff0000;">WebsiteBaker 2.8.4 and above is not able to run with PHP-Version less then 5.3.2!!<br />'
+          . 'Please change your PHP-Version to any kind from 5.3.2 and up!<br />'
+          . 'If you have problems to solve that, ask your hosting provider for it.<br  />'
+          . 'The very best solution is the use of PHP-5.4 and up</p>';
+    die($sMsg);
+}
 // --- delete fatal disturbing files before upgrade starts -------------------------------
 $aPreDeleteFiles = array(
 // list of files
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2074)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2075)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.4');
-if(!defined('REVISION')) define('REVISION', '2073');
+if(!defined('REVISION')) define('REVISION', '2075');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/install/save.php
===================================================================
--- branches/2.8.x/wb/install/save.php	(revision 2074)
+++ branches/2.8.x/wb/install/save.php	(revision 2075)
@@ -36,9 +36,13 @@
 $debug = true;
 if(!defined('DEBUG')) { define('DEBUG', true); }
 
-include(dirname(dirname(__FILE__)).'/framework/globalExceptionHandler.php'); 
-include(dirname(dirname(__FILE__)).'/framework/WbAutoloader.php');
-WbAutoloader::doRegister(array('admin'=>'a', 'modules'=>'m'));
+include(dirname(__DIR__).'/framework/globalExceptionHandler.php');
+include(dirname(__DIR__).'/framework/WbAutoloader.php');
+WbAutoloader::doRegister(array('admin'=>'a', 'modules'=>'m', 'templates'=>'t', 'include'=>'i'));
+// register PHPMailer autoloader ---
+if (!function_exists('PHPMailerAutoload')) {
+    require(dirname(__DIR__).'/include/phpmailer/PHPMailerAutoload.php');
+}
 
 function errorLogs($error_str)
 {
Index: branches/2.8.x/wb/install/index.php
===================================================================
--- branches/2.8.x/wb/install/index.php	(revision 2074)
+++ branches/2.8.x/wb/install/index.php	(revision 2075)
@@ -32,7 +32,14 @@
  * @since        File available since 2012-04-01
  * @description  xyz
  */
-
+// PHP less then 5.3.2 is prohibited ---
+if (version_compare(PHP_VERSION, '5.3.2', '<')) {
+    $sMsg = '<p style="color: #ff0000;">WebsiteBaker 2.8.4 and above is not able to run with PHP-Version less then 5.3.2!!<br />'
+          . 'Please change your PHP-Version to any kind from 5.3.2 and up!<br />'
+          . 'If you have problems to solve that, ask your hosting provider for it.<br  />'
+          . 'The very best solution is the use of PHP-5.4 and up</p>';
+    die($sMsg);
+}
 // Start a session
 if(!defined('SESSION_STARTED')) {
 	session_name('wb_session_id');
