diff index.php @ 144:f64a46fa7961

Rename some CSS elements.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 09 Sep 2014 11:21:32 +0300
parents d70c899b0571
children c028506aa9cc
line wrap: on
line diff
--- a/index.php	Sun Aug 31 01:10:35 2014 +0300
+++ b/index.php	Tue Sep 09 11:21:32 2014 +0300
@@ -313,9 +313,11 @@
   if ($mini)
   {
     $out =
-    "<table class=\"timetable\">".
-    " <tr>\n  <th></th>".
-    "  <th class=\"days\">".lukGetDayName($currDay)."</th>\n </tr>\n";
+    "<table id=\"timeTable\">\n".
+    " <tr>\n".
+    "  <th></th>".
+    "  <th class=\"days\">".lukGetDayName($currDay)."</th>\n".
+    " </tr>\n";
 
     $startDay = $currDay;
     $lastDay = $currDay + 1;
@@ -326,8 +328,9 @@
     "<p>".join("; ", $classInfo["general"]).
     //" [".cmQM("viikossa", $classInfo["totalHours"])."]".
     "</p>\n".
-    "<table class=\"timetable\">".
-    " <tr>\n  <th></th>\n";
+    "<table id=\"timeTable\">\n".
+    " <tr>\n".
+    "  <th></th>\n";
     
     $cellWidth = $classInfo["maxDays"] > 0 ? 100 / $classInfo["maxDays"] : 15;
     if ($cellWidth > 25) $cellWidth = 25;