X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=html%2Fgetkiosk.php;h=d3a25ad3f891a0109b2865dc2caf16a70c44c144;hb=a492499542b190a2b7e81188fe32e2461cddb20b;hp=f4a41e263fcbc045d52c7408f03c51db1e926f3d;hpb=ece29fd20f606a5f17d9a95ba4d5d1da0743186e;p=gosa.git diff --git a/html/getkiosk.php b/html/getkiosk.php index f4a41e263..d3a25ad3f 100644 --- a/html/getkiosk.php +++ b/html/getkiosk.php @@ -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; } @@ -51,7 +55,7 @@ session_start (); /* Logged in? Simple security check */ if (!isset($_SESSION['ui'])){ gosa_log ("Error: getkiosk.php called without session"); - header ("Location: ../index.php"); + header ("Location: index.php"); exit; } $ui= $_SESSION["ui"]; @@ -61,7 +65,7 @@ $config= $_SESSION['config']; $acl= get_permissions ($config->current['BASE'], $ui->subtreeACL); $acl= get_module_permission($acl, "all", $config->current['BASE']); if (chkacl($acl, "all") != ""){ - header ("Location: ../index.php"); + header ("Location: index.php"); exit; } $dir = search_config($config->data,"environment", "KIOSKPATH");