als ich gerade das Video zu Layouts in Ilch 2.0 angesehen habe, ist mir der Unterstrich rechts neben der Checkbox aufgefallen beim Aktivieren des neuen Layouts. Zu sehen hier im Video:
youtu.be/ZmFa2jqBhJY?t=1m6s
github.com/IlchCMS/Ilch-2.0/blob/master/application/modules/admin/views/admin/layouts/index.php
<a title="<?php if ($this->get('defaultLayout') == $layout->getKey()) { echo $this->getTrans('isDefault'); } else { echo $this->getTrans('setDefault'); } ?>" href="<?=$this->getUrl(array('action' => 'default', 'key' => $layout->getKey())) ?>"> <?php if ($this->get('defaultLayout') == $layout->getKey()): ?> <i class="fa fa-check-square-o fa-2x text-success"></i> <?php else: ?> <i class="fa fa-square-o fa-2x"></i> <?php endif; ?> </a>
Kosmetisches Problem.