1.0.1 - Bugfix Update
Changed from "Header Location…" to a javascript redirect due to complications with IE8. :(
This commit is contained in:
parent
b2f05f978a
commit
99fa678533
@ -1,19 +1,12 @@
|
|||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
|
|
||||||
<title>Speiseplan</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<?php
|
<?php
|
||||||
#¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
#¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
|
||||||
|
# version......: 1.0.1
|
||||||
|
# last.change..: 2013-11-14
|
||||||
# created.by...: Jan Jastrow
|
# created.by...: Jan Jastrow
|
||||||
# version......: 1.0
|
# contact......: jan@schwerkraftlabor.de
|
||||||
# last.change..: 2013-10-30
|
# license......: MIT license
|
||||||
# license......: MIT
|
|
||||||
# soure........: https://github.com/Gehirnfussel/Firma2-Essensplan
|
# soure........: https://github.com/Gehirnfussel/Firma2-Essensplan
|
||||||
#_______________
|
#_________________
|
||||||
|
|
||||||
|
|
||||||
# Kalenderwoche ermitteln
|
# Kalenderwoche ermitteln
|
||||||
$kw = (int)date('W');
|
$kw = (int)date('W');
|
||||||
@ -26,7 +19,7 @@
|
|||||||
if(isset($_GET['wann']))
|
if(isset($_GET['wann']))
|
||||||
$wann = $_GET['wann'];
|
$wann = $_GET['wann'];
|
||||||
else
|
else
|
||||||
$wann = 0;
|
$wann = 0; # Standard: Aktuelle Woche (+0)
|
||||||
|
|
||||||
# Diese Woche + $wann
|
# Diese Woche + $wann
|
||||||
$kw = $kw + $wann;
|
$kw = $kw + $wann;
|
||||||
@ -38,14 +31,19 @@
|
|||||||
$wo = "RD"; # Standard: RD
|
$wo = "RD"; # Standard: RD
|
||||||
|
|
||||||
# Pfad und Dateiname zum PDF
|
# Pfad und Dateiname zum PDF
|
||||||
$speiseplan = "//Server/Path1-".$wo."/Path2/".$kw."-KW.pdf";
|
$speiseplan = "file://rdbs124/Tausch/Info/Speisepläne/KKH-".$wo."/Personalspeiseplan/".$kw."-KW.pdf";
|
||||||
|
|
||||||
# Direkte Weiterleitung zum entsprechenden Speiseplan
|
# Direkte Weiterleitung zum entsprechenden Speiseplan
|
||||||
echo ' <p>Weiterleitung zum aktuellen Speiseplan. Falls ein Fehler auftritt, bitte <a href="file:$speiseplan">hier</a> klicken.</p>
|
echo '<!doctype html>
|
||||||
<p>Ansonsten wenden Sie sich bitte per Mail an Jan Jastrow (<strong>jan@schwerkraftlabor.de</strong>)</p>';
|
<html>
|
||||||
header("Location: file:$speiseplan"); # Direkte Umleitung
|
<head>
|
||||||
exit;
|
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
|
||||||
|
<title>Speiseplan</title>
|
||||||
?>
|
</head>
|
||||||
|
<body>
|
||||||
|
<script type="text/javascript">window.location = "'.$speiseplan.'"</script>
|
||||||
|
<p>Es erfolgt eine automatische Weiterleitung zum aktuellen Speiseplan.<br />
|
||||||
|
Falls ein Fehler auftritt, bitte <a href="'.$speiseplan.'">hier</a> klicken.</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>';
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user