MDL-43159 Libraries Wrong naming convention in $compat_view.

This commit is contained in:
Matteo Scaramuccia 2013-12-02 19:12:46 +01:00
parent c36a2401ab
commit aea486c8d5

View file

@ -500,17 +500,17 @@ class core_useragent {
} else {
return false;
}
$compat_view = false;
$compatview = false;
// IE8 and later versions may pretend to be IE7 for intranet sites, use Trident version instead,
// the Trident should always describe the capabilities of IE in any emulation mode.
if ($browser === '7.0' and preg_match("/Trident\/([0-9\.]+)/", $useragent, $match)) {
$compat_view = true;
$compatview = true;
$browser = $match[1] + 4; // NOTE: Hopefully this will work also for future IE versions.
}
$browser = round($browser, 1);
return array(
'version' => $browser,
'compatview' => $compat_view
'compatview' => $compatview
);
}