move profile photos to new methods

This commit is contained in:
redmatrix
2015-06-15 23:37:51 -07:00
parent bdedda7c6b
commit bc72d3fd26
3 changed files with 45 additions and 49 deletions

View File

@@ -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();