Use <br> instead of <br /> in the logout view script

refs #8626
This commit is contained in:
Eric Lippmann 2015-03-11 15:06:07 +01:00
parent 7220d781d8
commit f44d5ec20a

View File

@ -9,7 +9,8 @@
--> -->
<div class="content"> <div class="content">
<div class="alert alert-warning" id="logout-status"> <div class="alert alert-warning" id="logout-status">
<b> <?= t('Logging out...'); ?> </b> <br /> <b><?= t('Logging out...'); ?></b>
<br>
<?= t( <?= t(
'If this message does not disappear, it might be necessary to quit the ' . 'If this message does not disappear, it might be necessary to quit the ' .
'current session manually by clearing the cache, or by closing the current ' . 'current session manually by clearing the cache, or by closing the current ' .
@ -18,7 +19,7 @@
</div> </div>
<div class="container" > <div class="container" >
<a href="<?= $this->href('dashboard/index'); ?>"> <?= t('Login'); ?></a> <a href="<?= $this->href('dashboard/index'); ?>"><?= t('Login'); ?></a>
</div> </div>
</div> </div>
<script type="text/javascript"> <script type="text/javascript">