diff options
author | Volker E <volker.e@temporaer.net> | 2015-03-19 09:10:58 +0100 |
---|---|---|
committer | Volker E <volker.e@temporaer.net> | 2015-03-19 09:10:58 +0100 |
commit | 0e4d52f9d29d33bd12033fc5d6eae4e7dcab0795 (patch) | |
tree | 4a508ecc2edc2f0d84b8565aa829dd47a4d347be /core/templates | |
parent | 0d0c73cf2b6a46f81fb249cfacf0742fc1417629 (diff) | |
download | nextcloud-server-0e4d52f9d29d33bd12033fc5d6eae4e7dcab0795.tar.gz nextcloud-server-0e4d52f9d29d33bd12033fc5d6eae4e7dcab0795.zip |
fixing #15027, cleaning up obsolete IE5-7 workaround code
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/exception.php | 2 | ||||
-rw-r--r-- | core/templates/installation.php | 2 | ||||
-rw-r--r-- | core/templates/layout.user.php | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/core/templates/exception.php b/core/templates/exception.php index e5b57e2645e..0f0924b0f8a 100644 --- a/core/templates/exception.php +++ b/core/templates/exception.php @@ -9,7 +9,7 @@ style('core', ['styles', 'header']); <p><?php p($l->t('The server encountered an internal error and was unable to complete your request.')) ?></p> <p><?php p($l->t('Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.')) ?></p> <p><?php p($l->t('More details can be found in the server log.')) ?></p> - <br /> + <br> <h2><strong><?php p($l->t('Technical details')) ?></strong></h2> <ul> diff --git a/core/templates/installation.php b/core/templates/installation.php index 54c490c544e..96e6119cad3 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -10,7 +10,7 @@ script('core', [ <input type='hidden' id='hasOracle' value='<?php p($_['hasOracle']) ?>'> <input type='hidden' id='hasMSSQL' value='<?php p($_['hasMSSQL']) ?>'> <form action="index.php" method="post"> -<input type="hidden" name="install" value="true" /> +<input type="hidden" name="install" value="true"> <?php if(count($_['errors']) > 0): ?> <fieldset class="warning"> <legend><strong><?php p($l->t('Error'));?></strong></legend> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 4c804ed3ea8..e06ed00098f 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -65,7 +65,7 @@ <div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown"'); } else { print_unescaped('" style="display: none"'); } ?>> <?php if ($_['userAvatarSet']): ?> <img src="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', ['userId' => $_['user_uid'], 'size' => 32]));?>?requesttoken=<?php p(urlencode($_['requesttoken'])); ?>" - alt="" /> + alt=""> <?php endif; ?> </div> <?php endif; ?> @@ -99,7 +99,7 @@ </label> <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>" - autocomplete="off" tabindex="3" /> + autocomplete="off" tabindex="3"> </form> </div></header> @@ -110,7 +110,7 @@ <li data-id="<?php p($entry['id']); ?>"> <a href="<?php print_unescaped($entry['href']); ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>> - <img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>"/> + <img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>"> <div class="icon-loading-dark" style="display:none;"></div> <span> <?php p($entry['name']); ?> @@ -124,7 +124,7 @@ <li id="apps-management"> <a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" title="" <?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>> - <img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>"/> + <img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>"> <div class="icon-loading-dark" style="display:none;"></div> <span> <?php p($l->t('Apps')); ?> |