mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
6 lines
224 B
PHP
6 lines
224 B
PHP
<?php
|
|
header('Content-type: text/plain');
|
|
header('Content-disposition: attachment');
|
|
//todo: nice filename header('Content-disposition: attachment;filename=' . $title . '.' . $lang_code);
|
|
echo htmlspecialchars_decode($raw);
|