Changed all true/false to TRUE/FALSE respectively as PHP constants are better than...
[mailer.git] / application / mailer / init.php
index c9790dc5d6042d674a54e39b6894e17c792b6830..38f705e30031c40fcfc8abb90ab0838d5300c23f 100644 (file)
  */
 
 // Get config instance
-$cfg = FrameworkConfiguration::getInstance();
+$cfg = FrameworkConfiguration::getSelfInstance();
 
 // Initialize output system
 require($cfg->getConfigEntry('base_path') . 'inc/output.php');
 
-// Initialize file i/o system
-require($cfg->getConfigEntry('base_path') . 'inc/file_io.php');
-
-// Include the language sub-system
-require($cfg->getConfigEntry('base_path') . 'inc/language.php');
-
 // This application needs a database connection then we have to simply include
 // the inc/database.php script
 require($cfg->getConfigEntry('base_path') . 'inc/database.php');