Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77bb442
)
MDL-40931 theme_bootstrapbase: fixed missing ! when including html5shiv
author
Sam Hemelryk
<sam@moodle.com>
Thu, 29 Aug 2013 08:34:45 +0000
(20:34 +1200)
committer
Sam Hemelryk
<sam@moodle.com>
Thu, 29 Aug 2013 08:34:45 +0000
(20:34 +1200)
theme/bootstrapbase/config.php
patch
|
blob
|
blame
|
history
diff --git
a/theme/bootstrapbase/config.php
b/theme/bootstrapbase/config.php
index
37685cd
..
3cd1588
100644
(file)
--- a/
theme/bootstrapbase/config.php
+++ b/
theme/bootstrapbase/config.php
@@
-167,7
+167,7
@@
$THEME->javascripts_footer = array(
'moodlebootstrap',
);
-if (core_useragent::check_ie_version() && core_useragent::check_ie_version('9.0')) {
+if (core_useragent::check_ie_version() &&
!
core_useragent::check_ie_version('9.0')) {
$THEME->javascripts[] = 'html5shiv';
}