Subversion-Projekte lars-tiefland.niewerth

Revision

Revision 19 | Revision 32 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 19 Revision 31
Zeile 8... Zeile 8...
8
		}
8
		}
9
		if ($m===0)
9
		if ($m===0)
10
		{
10
		{
11
			$m=date("n");
11
			$m=date("n");
12
		}
12
		}
-
 
13
		$today_date=date("d.m.Y");
13
		global $smarty;
14
		global $smarty;
14
		$smarty->assign("title","Termine Schritt 2 - Kalender");
15
		$smarty->assign("title","Termine Schritt 2 - Kalender");
15
		setLocale(LC_ALL,"de_DE");
16
		setLocale(LC_ALL,"de_DE");
16
		$mode=(isset($_GET["mode"]))?$_GET["mode"]:"";
17
		$mode=(isset($_GET["mode"]))?$_GET["mode"]:"";
17
		$smarty->assign("mode",$mode);
18
		$smarty->assign("mode",$mode);
Zeile 77... Zeile 78...
77
				{
78
				{
78
					$cal.="<td>&nbsp;</td>";
79
					$cal.="<td>&nbsp;</td>";
79
				}
80
				}
80
				else
81
				else
81
				{
82
				{
-
 
83
					if($Day->thisDay().".$m.$y"==$today_date)
-
 
84
					{
-
 
85
						$cal.="<td class='cal-today'>";
-
 
86
					}
-
 
87
					else
-
 
88
					{
-
 
89
						$cal.="<td>";
-
 
90
					}
82
					$cal.='<td>'."<a href='termine.php?mode=end&amp;an_id=$an_id&amp;f_id=$f_id&amp;jahr=".$Month->thisYear()."&amp;monat=".$Month->thisMonth()."&amp;tag=".$Day->thisDay()."'>".$Day->thisDay()."</a></td>";
91
					$cal.="<a href='termine.php?mode=end&amp;an_id=$an_id&amp;f_id=$f_id&amp;jahr=".$Month->thisYear()."&amp;monat=".$Month->thisMonth()."&amp;tag=".$Day->thisDay()."'>".$Day->thisDay()."</a></td>";
83
				}
92
				}
Zeile 84... Zeile 93...
84
 
93
 
85
				if ($Day->isLast()) 
94
				if ($Day->isLast()) 
86
				{
95
				{