From bc72d3fd2659326e223120c337a59090d97985fe Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 15 Jun 2015 23:37:51 -0700 Subject: move profile photos to new methods --- include/attach.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/attach.php b/include/attach.php index 507b328d3..cf463785e 100644 --- a/include/attach.php +++ b/include/attach.php @@ -342,10 +342,16 @@ function attach_by_hash_nodata($hash, $rev = 0) { */ function attach_store($channel, $observer_hash, $options = '', $arr = null) { + require_once('include/photos.php'); + $ret = array('success' => false); $channel_id = $channel['channel_id']; $sql_options = ''; $source = (($arr) ? $arr['source'] : ''); + $album = (($arr) ? $arr['album'] : ''); + $hash = (($arr && $arr['hash']) ? $arr['hash'] : null); + +logger('arr: ' . print_r($arr,true)); // This is currently used only in mod/wall_attach @@ -432,7 +438,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $mimetype = z_mime_content_type($filename); } - if(! isset($hash)) + if(! $hash) $hash = random_string(); -- cgit v1.2.3