aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-14 01:13:38 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-14 01:13:38 -0700
commit584e9233d4a95e3f8cbc33eaedcc59d3210a66b9 (patch)
treeb6ba8574520d00bdea17fee4de43e7c6082ca0fc /mod
parent338b80560f12eb54d8d52d4fb42ff4c1507d7574 (diff)
parent213ca7f8b584c9b75f25aa560b1f3eda1e415f54 (diff)
downloadvolse-hubzilla-584e9233d4a95e3f8cbc33eaedcc59d3210a66b9.tar.gz
volse-hubzilla-584e9233d4a95e3f8cbc33eaedcc59d3210a66b9.tar.bz2
volse-hubzilla-584e9233d4a95e3f8cbc33eaedcc59d3210a66b9.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'mod')
-rw-r--r--mod/attach.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/attach.php b/mod/attach.php
index cf72d09c6..118c67dd5 100644
--- a/mod/attach.php
+++ b/mod/attach.php
@@ -36,7 +36,8 @@ function attach_init(&$a) {
header('Content-disposition: attachment; filename="' . $r['data']['filename'] . '"');
if($r['data']['flags'] & ATTACH_FLAG_OS ) {
- $istream = fopen('store/' . $c[0]['channel_address'] . '/' . $r['data']['data'],'rb');
+ $fname = dbunescbin($r['data']['data']);
+ $istream = fopen('store/' . $c[0]['channel_address'] . '/' . $fname,'rb');
$ostream = fopen('php://output','wb');
if($istream && $ostream) {
pipe_streams($istream,$ostream);
@@ -45,7 +46,7 @@ function attach_init(&$a) {
}
}
else
- echo $r['data']['data'];
+ echo dbunescbin($r['data']['data']);
killme();
}