phpmyadmin/show_config_errors.php
Michal Čihař ee0b2fee37 Better error message when config file can not be parsed
- shorter text
- directly show errors in iframe instead saying user to load other page
2011-06-22 09:29:14 +02:00

18 lines
271 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Simple wrapper just to enable error reporting and include config
*
* @package phpMyAdmin
*/
require './libraries/vendor_config.php';
error_reporting(E_ALL);
/**
* Read config file.
*/
require CONFIG_FILE;
?>