Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
class DestinationBrowser extends DestinationHTTP {
3
  function headers($content_type) {
4
    return array(
5
                 "Content-Disposition: inline; filename=".$this->filename_escape($this->get_filename()).".".$content_type->default_extension,
6
                 "Content-Transfer-Encoding: binary",
7
                 "Cache-Control: private"
8
                 );
9
  }
10
}
11
?>