diff options
author | Mario <mario@mariovavti.com> | 2018-11-23 15:42:40 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-11-23 15:42:40 +0100 |
commit | f408ff982c5e8600a029ae75375660895ae87d8a (patch) | |
tree | 1698a0916141c85d24920fc44bd0a5fc236bd28d /include/attach.php | |
parent | 85f52d2aeda44072013b9af5bfd470fbf47c2769 (diff) | |
parent | 9a8d1200ecc9f877b431a00a5219b41d2bd68de6 (diff) | |
download | volse-hubzilla-f408ff982c5e8600a029ae75375660895ae87d8a.tar.gz volse-hubzilla-f408ff982c5e8600a029ae75375660895ae87d8a.tar.bz2 volse-hubzilla-f408ff982c5e8600a029ae75375660895ae87d8a.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/attach.php')
-rw-r--r-- | include/attach.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/attach.php b/include/attach.php index 6b0d3fb3b..dd718aa14 100644 --- a/include/attach.php +++ b/include/attach.php @@ -739,7 +739,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } if(! $hash) - $hash = random_string(); + $hash = new_uuid(); // Check storage limits if($options !== 'update') { @@ -1122,7 +1122,7 @@ function attach_mkdir($channel, $observer_hash, $arr = null) { return $ret; } - $arr['hash'] = (($arr['hash']) ? $arr['hash'] : random_string()); + $arr['hash'] = (($arr['hash']) ? $arr['hash'] : new_uuid()); // Check for duplicate name. // Check both the filename and the hash as we will be making use of both. |