X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=html%2Fgetkiosk.php;h=bd8d0e8e704fe23020fb127119f17b2337916aa5;hb=1fac73f3983fd6dc8f75341dbe44637c1d7820fe;hp=ce141cae3260694fb3aa498656bcc56c2bc5b35a;hpb=48221e8bc034b46a4600bbb72747e42402178e64;p=gosa.git diff --git a/html/getkiosk.php b/html/getkiosk.php index ce141cae3..bd8d0e8e7 100644 --- a/html/getkiosk.php +++ b/html/getkiosk.php @@ -22,7 +22,7 @@ function getkiosk ($id) { if(!file_exists($id)){ - echo sprintf(_("Can't open file '%s', possibly the file does not exists."),$id); + echo sprintf(_("Can't open file '%s', possibly the file does not exist."),$id); exit(); } @@ -32,12 +32,16 @@ function getkiosk ($id) } $display = file_get_contents($id); + + $nn = preg_replace("/^.*\//","",$id); + header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); header("Cache-Control: post-check=0, pre-check=0"); header("Content-type: application/octet-stream"); + header("Content-Disposition: attachment; filename=".$nn); echo $display; }