Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-03-17 01:54:32 +0400
committerJo Michael <me@mynetx.net>2012-03-17 01:54:32 +0400
commitaf0e6c71e72cc3bbcd9c8d35c64836e4e3b07b1e (patch)
treed0d54291de8b5d9eaf16edf73cc043568e30f5c4 /navigation.php
parent7a88029f455e5744fc5911e2fe852c6e1ac670f7 (diff)
Use HTML5 DOCTYPE along with new charset meta-tag
Diffstat (limited to 'navigation.php')
-rw-r--r--navigation.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/navigation.php b/navigation.php
index 748c9abcb0..bb7b9e05e5 100644
--- a/navigation.php
+++ b/navigation.php
@@ -88,8 +88,7 @@ require_once './libraries/header_http.inc.php';
// xml declaration moves IE into quirks mode, making much trouble with CSS
/* echo '<?xml version="1.0" encoding="utf-8"?>'; */
?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="<?php echo $available_languages[$lang][1]; ?>"
lang="<?php echo $available_languages[$lang][1]; ?>"
@@ -99,7 +98,7 @@ require_once './libraries/header_http.inc.php';
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title>phpMyAdmin</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <meta charset="utf-8" />
<base target="frame_content" />
<link rel="stylesheet" type="text/css"
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&amp;js_frame=left&amp;nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />