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
Support displaying in UTC (RFE #1440386).
[phpmyadmin/last10db.git]
/
show_config_errors.php
blob
4e18ad57a6b3c75630376c59c7ee58cf1fb982c8
1
<
?php
2
/* $Id$ */
3
// vim: expandtab sw=4 ts=4 sts=4:
4
5
/* Simple wrapper just to enable error reporting and include config */
6
7
echo
"Starting to parse config file...
\n
"
;
8
9
error_reporting
(
E_ALL
);
10
require
(
'./config.inc.php'
);
11
12
?
>