aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-19 19:43:00 -0700
committerMario Vavti <mario@mariovavti.com>2017-03-29 13:56:43 +0200
commit8caa4d9e37497645e3bd02aff2975f7851ee9837 (patch)
tree4deaeb58537f9671b3d9feefb603a9fff624003d /include
parentd5525a38f185e37fe0101bc7ef6e67abf59f98f8 (diff)
downloadvolse-hubzilla-8caa4d9e37497645e3bd02aff2975f7851ee9837.tar.gz
volse-hubzilla-8caa4d9e37497645e3bd02aff2975f7851ee9837.tar.bz2
volse-hubzilla-8caa4d9e37497645e3bd02aff2975f7851ee9837.zip
attach_folder_rpaths() providing incorrect results
Diffstat (limited to 'include')
-rw-r--r--include/attach.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/attach.php b/include/attach.php
index cbcdbc399..d7c1b9da4 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -2243,11 +2243,12 @@ function attach_folder_select_list($channel_id) {
if($r) {
foreach($r as $rv) {
$x = attach_folder_rpaths($r,$rv);
- if($x)
+ if($x) {
$out[$x[0]] = $x[1];
+ }
}
}
-
+logger('results: ' . print_r($out,true));
return $out;
}
@@ -2266,7 +2267,6 @@ function attach_folder_rpaths($all_folders,$that_folder) {
continue;
if($selected['hash'] == $parent_hash) {
$path = '/' . $selected['filename'] . $path;
- $current_hash = $selected['hash'];
$parent_hash = $selected['folder'];
$found = true;
break;