*** empty log message ***

This commit is contained in:
andrey
2002-03-26 17:51:29 +00:00
parent fe5492c0e9
commit 20ace8a768
2 changed files with 2 additions and 6 deletions

View File

@@ -233,8 +233,6 @@ class Config_File {
*/
function load_file($file_name, $prepend_path = true)
{
global $php_errormsg;
if ($prepend_path && $this->_config_path != "")
$config_file = $this->_config_path . $file_name;
else
@@ -243,7 +241,7 @@ class Config_File {
ini_set('track_errors', true);
$fp = @fopen($config_file, "r");
if (!is_resource($fp)) {
$this->_trigger_error_msg($php_errormsg);
$this->_trigger_error_msg("Could not open config file '$config_file'");
return;
}

View File

@@ -233,8 +233,6 @@ class Config_File {
*/
function load_file($file_name, $prepend_path = true)
{
global $php_errormsg;
if ($prepend_path && $this->_config_path != "")
$config_file = $this->_config_path . $file_name;
else
@@ -243,7 +241,7 @@ class Config_File {
ini_set('track_errors', true);
$fp = @fopen($config_file, "r");
if (!is_resource($fp)) {
$this->_trigger_error_msg($php_errormsg);
$this->_trigger_error_msg("Could not open config file '$config_file'");
return;
}