Changeset 598 in subversion


Ignore:
Timestamp:
Jun 5, 2007 12:53:29 PM (6 years ago)
Author:
till
Message:

+ silenced the includes for prettier erroring when config files are missing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/devel-vnext/program/include/main.inc

    r594 r598  
    113113 
    114114    // load config file 
    115     include_once 'config/main.inc.php'; 
     115    @include_once 'config/main.inc.php'; 
    116116    $conf = is_array($rcmail_config) ? $rcmail_config : array(); 
    117117 
     
    122122 
    123123    // load db conf 
    124     include_once 'config/db.inc.php'; 
     124    @include_once 'config/db.inc.php'; 
    125125    $conf = array_merge($conf, $rcmail_config); 
    126126 
Note: See TracChangeset for help on using the changeset viewer.