Merge remote-tracking branch 'origin/develop' into ent-3674-discovery-fase-3

Former-commit-id: 3b243ec4bd93ba4cb494f0ea1a53043cc8e890c6
This commit is contained in:
fbsanchez 2019-04-22 13:23:58 +02:00
commit ca05867e55
1 changed files with 1 additions and 7 deletions

View File

@ -202,7 +202,6 @@ class Wizard
) {
$bc = [];
$i = 0;
$array_size = (count($urls) - 1);
foreach ($urls as $url) {
if ($url['selected'] == 1) {
@ -592,13 +591,8 @@ class Wizard
}
if (is_array($input['block_content']) === true) {
$label = '';
if (isset($input['label'])) {
$label = $input['label'];
}
// Print independent block of inputs.
$output .= '<li id="'.$input['block_id'].'" class="'.$class.'">'.$label;
$output .= '<li id="'.$input['block_id'].'" class="'.$class.'">';
$output .= '<ul class="wizard">';
foreach ($input['block_content'] as $input) {
$output .= $this->printBlock($input, $return);