From 107b010b434bcd3c066b63d3e0c648418609be4f Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 3 May 2003 06:49:37 +0000 Subject: [PATCH] Some random lowercasing --- lib/weblib.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index d8680a793f..738e442d87 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -623,24 +623,24 @@ function print_header ($title="", $heading="", $navigation="", $focus="", $meta= if (!$menu and $navigation) { if (isset($USER->id)) { - $menu = "wwwroot/login/logout.php\">".get_string("logout").""; + $menu = "wwwroot/login/logout.php\">".get_string("logout").""; } else { - $menu = "wwwroot/login/index.php\">".get_string("login").""; + $menu = "wwwroot/login/index.php\">".get_string("login").""; } } // Specify character set ... default is iso-8859-1 but some languages might need something else // Could be optimised by carrying the charset variable around in $USER if (current_language() == "en") { - $meta = "\n$meta\n"; + $meta = "\n$meta\n"; } else { - $meta = "\n$meta\n"; + $meta = "\n$meta\n"; } if ($CFG->langdir == "RTL") { - $direction = " DIR=\"RTL\""; + $direction = " dir=\"rtl\""; } else { - $direction = " DIR=\"LTR\""; + $direction = " dir=\"ltr\""; } if (!$cache) { // Do everything we can to prevent clients and proxies caching -- 2.39.5