diff --git a/core/Core.php b/core/Core.php index fbd913269..2420f45ed 100755 --- a/core/Core.php +++ b/core/Core.php @@ -28,7 +28,7 @@ error_reporting(E_ALL); */ $envFiles = array('../_ss_environment.php', '../../_ss_environment.php', '../../../_ss_environment.php'); foreach($envFiles as $envFile) { - if(file_exists($envFile)) { + if(@file_exists($envFile)) { define('SS_ENVIRONMENT_FILE', $envFile); include_once($envFile); break; @@ -286,4 +286,4 @@ function _t($entity, $string = "", $priority = 40, $context = "") { return i18n::_t($entity, $string, $priority, $context); } -?> \ No newline at end of file +?>