setup-summary.phtml (icingaweb2-2.11.3) | : | setup-summary.phtml (icingaweb2-2.11.4) | ||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
<div class="summary"> | <div class="summary"> | |||
<?php foreach ($form->getSummary() as $pageHtml): ?> | <?php foreach ($form->getSummary() as $pageHtml): ?> | |||
<?php if ($pageHtml): ?> | <?php if ($pageHtml): ?> | |||
<div class="page"> | <div class="page"> | |||
<?= $pageHtml; ?> | <?= $pageHtml; ?> | |||
</div> | </div> | |||
<?php endif ?> | <?php endif ?> | |||
<?php endforeach ?> | <?php endforeach ?> | |||
</div> | </div> | |||
<form | <form | |||
id="<?= $form->getName(); ?>" | id="<?= $this->escape($form->getName()); ?>" | |||
name="<?= $form->getName(); ?>" | name="<?= $this->escape($form->getName()); ?>" | |||
enctype="<?= $form->getEncType(); ?>" | enctype="<?= $this->escape($form->getEncType()); ?>" | |||
method="<?= $form->getMethod(); ?>" | method="<?= $this->escape($form->getMethod()); ?>" | |||
action="<?= $form->getAction(); ?>" | action="<?= $this->escape($form->getAction()); ?>" | |||
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>" | data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>" | |||
class="summary" | class="summary" | |||
> | > | |||
<?= $form->getElement($form->getTokenElementName()); ?> | <?= $form->getElement($form->getTokenElementName()); ?> | |||
<?= $form->getElement($form->getUidElementName()); ?> | <?= $form->getElement($form->getUidElementName()); ?> | |||
<?= $form->getDisplayGroup('buttons'); ?> | <?= $form->getDisplayGroup('buttons'); ?> | |||
</form> | </form> | |||
End of changes. 1 change blocks. | ||||
5 lines changed or deleted | 5 lines changed or added |