File size: 358 Bytes
a26d531 | 1 2 3 4 5 6 7 8 9 10 11 | ```php
<?php
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="VLC_Information_Security_Practices.pdf"');
readfile('assets/documents/VLC_Information_Security_Practices.pdf');
exit;
?>
```
___METADATA_START___
{"repoId":"vlcsolutions/vlc-securetrust-shield","isNew":false,"userName":"vlcsolutions"}
___METADATA_END___ |