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
Translated using Weblate (Interlingua)
[phpmyadmin.git]
/
chk_rel.php
blob
915e8b24b4327de349c41043ef9aaf752b8892fb
1
<
?php
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
/**
4
* Displays status of phpMyAdmin configuration storage
5
*
6
* @package PhpMyAdmin
7
*/
8
9
require_once
'libraries/common.inc.php'
;
10
$response
=
PMA_Response
::
getInstance
();
11
$response
->
addHTML
(
12
PMA_getRelationsParamDiagnostic
(
PMA_getRelationsParam
())
13
);
14
15
?
>