repo.or.cz
/
phpmyadmin
/
last10db.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Galician update
[phpmyadmin/last10db.git]
/
show_config_errors.php
blob
e9bb4e5b628993f7ae5bb30b4484b8fbb253f1be
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
echo
"Starting to parse config file...
\n
"
;
11
12
error_reporting
(
E_ALL
);
13
/**
14
* Read config file.
15
*/
16
require
'./config.inc.php'
;
17
18
?
>