diff options
author | Mario <mario@mariovavti.com> | 2020-04-25 09:15:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-25 09:15:20 +0000 |
commit | c229f058b4331e3b631d9ca725385ef78bf59778 (patch) | |
tree | e54e4d3e6ef9c8030f0a7bddb2a49f270fcc9697 /include | |
parent | e2b10f52e02c4cee77af089a544ec55e62048aba (diff) | |
download | volse-hubzilla-c229f058b4331e3b631d9ca725385ef78bf59778.tar.gz volse-hubzilla-c229f058b4331e3b631d9ca725385ef78bf59778.tar.bz2 volse-hubzilla-c229f058b4331e3b631d9ca725385ef78bf59778.zip |
fix mod filestorage and fetch the info from attach if only the hash is provided in attach_store_item()
Diffstat (limited to 'include')
-rw-r--r-- | include/attach.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/attach.php b/include/attach.php index fbf131fb3..4c2459046 100644 --- a/include/attach.php +++ b/include/attach.php @@ -1921,6 +1921,20 @@ function file_activity($channel_id, $object, $allow_cid, $allow_gid, $deny_cid, function attach_store_item($channel, $observer, $file) { + + if(is_string($file)) { + $r = q("SELECT * FROM attach WHERE uid = %d AND hash = '%s' LIMIT 1", + intval($channel['channel_id']), + dbesc($file) + ); + + if(! $r) + return; + + $file = $r[0]; + + } + $filetype_parts = explode('/', $file['filetype']); switch($filetype_parts[0]) { |