repo.or.cz
/
phpmyadmin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
saving of theme and font size
[phpmyadmin.git]
/
show_config_errors.php
blob
8b1cd187e363ed066526f7bf349be8f9536819b7
1
<
?php
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
/**
4
* Simple wrapper just to enable error reporting and include config
5
*
6
* @version $Id$
7
* @package phpMyAdmin
8
*/
9
10
require
'./libraries/vendor_config.php'
;
11
12
echo
"Starting to parse config file...
\n
"
;
13
14
error_reporting
(
E_ALL
);
15
/**
16
* Read config file.
17
*/
18
require
CONFIG_FILE
;
19
20
?
>