chk_rel.php 308 B

123456789101112131415
  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. require_once 'libraries/common.inc.php';
  9. $response = PMA_Response::getInstance();
  10. $response->addHTML(
  11. PMA_getRelationsParamDiagnostic(PMA_getRelationsParam())
  12. );
  13. ?>