diff options
author | Mario <mario@mariovavti.com> | 2021-01-06 19:32:36 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-06 20:35:16 +0100 |
commit | 52fa350138aa19301850909fa13b0786e3c7dbb2 (patch) | |
tree | 0e0a4a0412f98ce9fd07ee4d4874a6727dbd95ec /include/attach.php | |
parent | 4ea8357c6af4af8fc398cd80c993778409f2091b (diff) | |
download | volse-hubzilla-52fa350138aa19301850909fa13b0786e3c7dbb2.tar.gz volse-hubzilla-52fa350138aa19301850909fa13b0786e3c7dbb2.tar.bz2 volse-hubzilla-52fa350138aa19301850909fa13b0786e3c7dbb2.zip |
error in logic
(cherry picked from commit 16082456dfbb3e3108ba1a1db627f7333d10ddce)
Diffstat (limited to 'include/attach.php')
-rw-r--r-- | include/attach.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/attach.php b/include/attach.php index bcb3061f4..f65f41477 100644 --- a/include/attach.php +++ b/include/attach.php @@ -3017,7 +3017,7 @@ function attach_folder_rpaths($all_folders,$that_folder) { if(! $found) $error = true; } - while((! $found) && (! $error) && ($parent_hash != '')); + while((! $error) && ($parent_hash != '')); } return (($error) ? false : [ $current_hash , $path ]); |