Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'show_config_errors.php')
-rw-r--r--show_config_errors.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/show_config_errors.php b/show_config_errors.php
index e9bb4e5b62..8b1cd187e3 100644
--- a/show_config_errors.php
+++ b/show_config_errors.php
@@ -7,12 +7,14 @@
* @package phpMyAdmin
*/
+require './libraries/vendor_config.php';
+
echo "Starting to parse config file...\n";
error_reporting(E_ALL);
/**
* Read config file.
*/
-require './config.inc.php';
+require CONFIG_FILE;
?>