fixed handling of fallback_images
This commit is contained in:
parent
a3afd51b94
commit
4eb0c270aa
1 changed files with 4 additions and 1 deletions
|
@ -109,9 +109,12 @@ for($i = 0; $i < count($images); $i++) {
|
|||
}
|
||||
if (count($dir_arr) == 2) { // These are the pics in our current subdir
|
||||
$second_level_images[] = $root.$images[$i];
|
||||
$fallback_images = array();
|
||||
} else { // These are images from the deeper directories
|
||||
if(count($second_level_images) == 0) {
|
||||
$fallback_images[] = $root.$images[$i];
|
||||
}
|
||||
}
|
||||
// have us a little something to compare against
|
||||
$previous_element = $images[$i];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue