From 774b7e8e75d0fb0a9b22cd3b2b8abddcc237c6fa Mon Sep 17 00:00:00 2001
From: poltawski <poltawski>
Date: Thu, 27 Dec 2007 15:40:32 +0000
Subject: [PATCH] MDL-12209 - fix css errors, merged from MOODLE_19_STABLE

---
 theme/index.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/theme/index.php b/theme/index.php
index d38dc6f436..59446846b8 100644
--- a/theme/index.php
+++ b/theme/index.php
@@ -107,15 +107,15 @@
         }
 
         if ($CFG->theme == $theme) {
-            echo "\t\t" . '<td valign="top" style="border-style:solid; border-width:1px; border-color=#555555">'."\n";
+            echo "\t\t" . '<td valign="top" style="border-style:solid; border-width:1px; border-color:#555555">'."\n";
         } else {
             echo "\t\t" . '<td valign="top">'."\n";
         }
 
         if (isset($THEME->sheets)) {
-            echo "\t\t\t" . '<p style="font-size:1.5em;font-style:bold;">'.$theme.'</p>'."\n";
+            echo "\t\t\t" . '<p style="font-size:1.5em;font-weight:bold;">'.$theme.'</p>'."\n";
         } else {
-            echo "\t\t\t" . '<p style="font-size:1.5em;font-style:bold;color:red;">'.$theme.' (Moodle 1.4)</p>'."\n";
+            echo "\t\t\t" . '<p style="font-size:1.5em;font-weight:bold;color:red;">'.$theme.' (Moodle 1.4)</p>'."\n";
         }
 
         if ($screenshot or $readme) {
-- 
2.39.5