Code

Added mime pictures
[gosa.git] / html / getkiosk.php
index ce141cae3260694fb3aa498656bcc56c2bc5b35a..bd8d0e8e704fe23020fb127119f17b2337916aa5 100644 (file)
@@ -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;
 }