fix tests

This commit is contained in:
Dennis Eichhorn 2022-10-08 21:35:00 +02:00
parent 277cfa5984
commit 7a31dbc13c
3 changed files with 4 additions and 3 deletions

View File

@ -28,7 +28,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td><input type="datetime-local" id="iFrom" name="from" value="<?= $this->printHtml((new \DateTime('NOW'))->format('Y-m-d\TH:i:s')); ?>"> <tr><td><input type="datetime-local" id="iFrom" name="from" value="<?= $this->printHtml((new \DateTime('NOW'))->format('Y-m-d\TH:i:s')); ?>">
<tr><td><label for="iTo"><?= $this->getHtml('To'); ?></label> <tr><td><label for="iTo"><?= $this->getHtml('To'); ?></label>
<tr><td><input type="datetime-local" id="iTo" name="to" value="<?= $this->printHtml((new \DateTime('NOW'))->format('Y-m-d\TH:i:s')); ?>"> <tr><td><input type="datetime-local" id="iTo" name="to" value="<?= $this->printHtml((new \DateTime('NOW'))->format('Y-m-d\TH:i:s')); ?>">
<tr><td><input type="submit" value="<?= $this->getHtml('Submit', '0', '0'); ?>"> <tr><td><input type="submit" value="<?= $this->getHtml('Submit', '0', '0'); ?>" name="analyze">
</table> </table>
</form> </form>
</div> </div>

View File

@ -361,7 +361,7 @@ echo $this->getData('nav')->render(); ?>
</div> </div>
<div class="more-container"> <div class="more-container">
<input id="more-customer-sales" type="checkbox"> <input id="more-customer-sales" type="checkbox" name="more-container">
<label for="more-customer-sales"> <label for="more-customer-sales">
<span>Advanced</span> <span>Advanced</span>
<i class="fa fa-chevron-right expand"></i> <i class="fa fa-chevron-right expand"></i>

View File

@ -1,4 +1,5 @@
<?php declare(strict_types=1); <?php
declare(strict_types=1);
// Modules/tests // Modules/tests