diff options
author | Volker E <volker.e@temporaer.net> | 2015-03-17 23:57:23 +0100 |
---|---|---|
committer | Volker E <volker.e@temporaer.net> | 2015-03-17 23:57:23 +0100 |
commit | 6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09 (patch) | |
tree | 7996d4451c01f8656baa12658ab6a72d167be377 /core/templates/404.php | |
parent | 25b77159c453f72efd1e2c622fc4c4046816ca84 (diff) | |
download | nextcloud-server-6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09.tar.gz nextcloud-server-6ad76b5cc2a31545c7466ec1d6c18ac2bbf0dd09.zip |
addressing #14982 self-closing tags ending slash doesn't have a purpose & should be removed
Diffstat (limited to 'core/templates/404.php')
-rw-r--r-- | core/templates/404.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/404.php b/core/templates/404.php index 90912844ef9..c8d16e3e8f7 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -14,7 +14,7 @@ if(!isset($_)) {//also provide standalone error page <?php else: ?> <ul> <li class="error"> - <?php p($l->t('File not found')); ?><br/> + <?php p($l->t('File not found')); ?><br> <p class="hint"><?php p($l->t('The specified document has not been found on the server.')); ?></p> <p class="hint"><a href="<?php p(OC_Helper::linkTo('', 'index.php')) ?>"><?php p($l->t('You can click here to return to %s.', array($theme->getName()))); ?></a></p> </li> |