From: nicolasconnault Date: Tue, 10 Feb 2009 15:42:13 +0000 (+0000) Subject: MDL-18188 Added a call to the new get_browser_version_classes() function in print_hea... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=413f347520ad3368ac149154c556da12c0460a0f;p=moodle.git MDL-18188 Added a call to the new get_browser_version_classes() function in print_header, so that the classes are always added to the body tag. --- diff --git a/lib/weblib.php b/lib/weblib.php index 8ea94d7957..a26cbc9f95 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -2462,6 +2462,8 @@ function print_header ($title='', $heading='', $navigation='', $focus='', $pageclass .= ' drag'; } + $pageclass .= ' ' . get_browser_version_classes(); + $pageclass .= ' dir-'.get_string('thisdirection'); $pageclass .= ' lang-'.$currentlanguage;