diff options
author | Matt Friedman <maf675@gmail.com> | 2015-07-07 20:09:01 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-07-07 20:09:01 -0700 |
commit | 498a5160176625ba0311a1853c5399372731e623 (patch) | |
tree | 7d733fcc1879e12e683ff01fe145dde552fbbb1c /phpBB/phpbb/template/twig/node | |
parent | 60b4d5132f2023ade224676a6729b5f0847c4110 (diff) | |
download | forums-498a5160176625ba0311a1853c5399372731e623.tar forums-498a5160176625ba0311a1853c5399372731e623.tar.gz forums-498a5160176625ba0311a1853c5399372731e623.tar.bz2 forums-498a5160176625ba0311a1853c5399372731e623.tar.xz forums-498a5160176625ba0311a1853c5399372731e623.zip |
[ticket/13995] Remove deprecated projection media type
PHPBB3-13995
Diffstat (limited to 'phpBB/phpbb/template/twig/node')
-rw-r--r-- | phpBB/phpbb/template/twig/node/includecss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/twig/node/includecss.php b/phpBB/phpbb/template/twig/node/includecss.php index 2ce63402aa..2dac154036 100644 --- a/phpBB/phpbb/template/twig/node/includecss.php +++ b/phpBB/phpbb/template/twig/node/includecss.php @@ -31,7 +31,7 @@ class includecss extends \phpbb\template\twig\node\includeasset $compiler ->raw("<link href=\"' . ") ->raw("\$asset_file . '\"") - ->raw(' rel="stylesheet" type="text/css" media="screen, projection" />') + ->raw(' rel="stylesheet" type="text/css" media="screen" />') ; } } |