2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * phpMyAdmin fatal error display page
8 use PMA\libraries\Sanitize
;
10 if (! defined('PHPMYADMIN')) {
14 if (! defined('TESTSUITE')) {
15 http_response_code(500);
16 header('Content-Type: text/html; charset=utf-8');
20 <html lang
="<?php echo $lang; ?>" dir
="<?php echo $dir; ?>">
22 <link rel
="icon" href
="favicon.ico" type
="image/x-icon" />
23 <link rel
="shortcut icon" href
="favicon.ico" type
="image/x-icon" />
24 <title
>phpMyAdmin
</title
>
25 <meta charset
="utf-8" />
26 <style type
="text/css">
33 font
-family
: sans
-serif
;
36 background
-color
: #F5F5F5;
45 background
-color
: #ff0000;
50 border
: 0.1em solid red
;
51 background
-color
: #ffeeee;
57 <h1
>phpMyAdmin
- <?php
echo $error_header; ?
></h1
>
58 <p
><?php
echo Sanitize
::sanitize($error_message); ?
></p
>