bug #1444867, config.inc.php not loading on PHP < 4.3.0

This commit is contained in:
Marc Delisle
2006-03-07 18:35:50 +00:00
parent 612a87b07b
commit 6eba03ecfe

View File

@@ -355,7 +355,7 @@ class PMA_Config
eval('?>' . trim(file_get_contents($this->getSource())));
} else {
$eval_result =
eval('?>' . trim(implode('\n', file($this->getSource()))));
eval('?>' . trim(implode("\n", file($this->getSource()))));
}
error_reporting($old_error_reporting);