aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photos.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-10-23 17:46:29 -0700
committerzotlabs <mike@macgirvin.com>2016-10-23 17:46:29 -0700
commit5c891bcfb55c662bfb5d86b0d5695bd03523e842 (patch)
tree36448f578c01a9d55f83a956a6f313a595a0303e /Zotlabs/Module/Photos.php
parent547c70076499010b240ec174696176a2f5de0dc8 (diff)
downloadvolse-hubzilla-5c891bcfb55c662bfb5d86b0d5695bd03523e842.tar.gz
volse-hubzilla-5c891bcfb55c662bfb5d86b0d5695bd03523e842.tar.bz2
volse-hubzilla-5c891bcfb55c662bfb5d86b0d5695bd03523e842.zip
need to perform dbunescbin on stored filenames as well as binary data - this is a no-op under mysql but could provide unpredictable data under postgres
Diffstat (limited to 'Zotlabs/Module/Photos.php')
-rw-r--r--Zotlabs/Module/Photos.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php
index 1534dcfd6..3f0ab3ab0 100644
--- a/Zotlabs/Module/Photos.php
+++ b/Zotlabs/Module/Photos.php
@@ -246,7 +246,7 @@ class Photos extends \Zotlabs\Web\Controller {
intval($page_owner_uid)
);
if(count($r)) {
- $d = (($r[0]['os_storage']) ? @file_get_contents($r[0]['content']) : dbunescbin($r[0]['content']));
+ $d = (($r[0]['os_storage']) ? @file_get_contents(dbunescbin($r[0]['content'])) : dbunescbin($r[0]['content']));
$ph = photo_factory($d, $r[0]['mimetype']);
if($ph->is_valid()) {
$rotate_deg = ( (intval($_POST['rotate']) == 1) ? 270 : 90 );