diff options
| author | 2013-04-17 19:31:20 +0200 | |
|---|---|---|
| committer | 2013-04-17 19:31:20 +0200 | |
| commit | a2b5e8f3ce597fbcec0c25b68c551a526d2bf3ec (patch) | |
| tree | 6c93b180bf271e32357bf1bad4baa93aa1233f5b /app/controllers/configureController.php | |
| parent | 244026874aba991e7feb37f74a61b192f1bda5ac (diff) | |
Fix issue #60 : export OPML dans un fichier téléchargeable
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 9f4a8b24a..18a56c066 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -184,7 +184,8 @@ class configureController extends ActionController { View::_title ('feeds_opml.xml'); $this->view->_useLayout (false); - header('Content-type: text/xml'); + header('Content-Type: text/xml; charset=utf-8'); + header('Content-disposition: attachment; filename=feeds_opml.xml'); $feedDAO = new FeedDAO (); $catDAO = new CategoryDAO (); |
