[ticket/13995] Remove deprecated projection media type

PHPBB3-13995
This commit is contained in:
Matt Friedman 2015-07-07 20:09:01 -07:00
parent 60b4d5132f
commit 498a516017
7 changed files with 11 additions and 11 deletions

View file

@ -6,7 +6,7 @@
<meta name="description" content="phpBB 3.1.x Changelog" /> <meta name="description" content="phpBB 3.1.x Changelog" />
<title>phpBB &bull; Changelog</title> <title>phpBB &bull; Changelog</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -6,7 +6,7 @@
<meta name="description" content="phpBB 3.1.x frequently asked questions" /> <meta name="description" content="phpBB 3.1.x frequently asked questions" />
<title>phpBB &bull; FAQ</title> <title>phpBB &bull; FAQ</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -6,7 +6,7 @@
<meta name="description" content="phpBB 3.1.x Installation, updating and conversion informations" /> <meta name="description" content="phpBB 3.1.x Installation, updating and conversion informations" />
<title>phpBB &bull; Install</title> <title>phpBB &bull; Install</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -6,7 +6,7 @@
<meta name="description" content="phpBB 3.1.x Readme" /> <meta name="description" content="phpBB 3.1.x Readme" />
<title>phpBB &bull; Readme</title> <title>phpBB &bull; Readme</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -6,7 +6,7 @@
<meta name="description" content="This is an explanation of how to use the phpBB auth/acl API" /> <meta name="description" content="This is an explanation of how to use the phpBB auth/acl API" />
<title>phpBB3 &bull; Auth API</title> <title>phpBB3 &bull; Auth API</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -6,7 +6,7 @@
<meta name="description" content="Ascraeus coding guidelines document" /> <meta name="description" content="Ascraeus coding guidelines document" />
<title>phpBB3 &bull; Coding Guidelines</title> <title>phpBB3 &bull; Coding Guidelines</title>
<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> <link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" />
</head> </head>

View file

@ -31,7 +31,7 @@ class includecss extends \phpbb\template\twig\node\includeasset
$compiler $compiler
->raw("<link href=\"' . ") ->raw("<link href=\"' . ")
->raw("\$asset_file . '\"") ->raw("\$asset_file . '\"")
->raw(' rel="stylesheet" type="text/css" media="screen, projection" />') ->raw(' rel="stylesheet" type="text/css" media="screen" />')
; ;
} }
} }