From 413f347520ad3368ac149154c556da12c0460a0f Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Tue, 10 Feb 2009 15:42:13 +0000 Subject: [PATCH] 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. --- lib/weblib.php | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.39.5