We will probably drop support for IE8 in Moodle 2.5 (June 2013)

Re: We will probably drop support for IE8 in Moodle 2.5 (June 2013)

by Andrew Lyons -
Number of replies: 1
Picture of Core developers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

Hi Richard,

For the record, we do have a function in lib/moodlelib.php called check_browser_version() which can be called as:

if (check_browser_version('MSIE') && !check_browser_version('MSIE', 9)) {
  // This is IE with a version number lower than 9
}

It checks for a version greater or equal to the one specified - hence, first checking for an IE match, and then checking whether it is not greater than or equal to IE9. This attempts to handle various IEisms like different browser modes for infranet sites.

Andrew

Average of ratings: Useful (1)