From 8717adaade7472f338bccc555b1af13cd1f3a3fc Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Wed, 23 May 2018 15:47:33 +0200 Subject: [PATCH] Remove special handling for Microsoft browsers The following line in head section is no longer needed when using IE11 or Edge and using , see [1] Fixes #24476 [1] https://stackoverflow.com/questions/6771258/what-does-meta-http-equiv-x-ua-compatible-content-ie-edge-do --- core/layout_api.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/layout_api.php b/core/layout_api.php index 3b1f924669..99c0c94a35 100644 --- a/core/layout_api.php +++ b/core/layout_api.php @@ -242,9 +242,6 @@ function layout_is_rtl() { * @return void */ function layout_head_meta() { - # use the following meta to force IE use its most up to date rendering engine - echo '' . "\n"; - echo '' . "\n"; }