diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-03-19 23:44:14 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-03-19 23:44:14 +0100 |
commit | b285e19dc8845cd41b5065c56613e75be7e8a222 (patch) | |
tree | c59f82f49e67661e74b5f11d3fd8934fb303234a /apps/dav/templates | |
parent | d3401efa2d368e420c8d805a03c6779a2b9f5234 (diff) | |
download | nextcloud-server-b285e19dc8845cd41b5065c56613e75be7e8a222.tar.gz nextcloud-server-b285e19dc8845cd41b5065c56613e75be7e8a222.zip |
fix dav browser error page not styled
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/dav/templates')
-rw-r--r-- | apps/dav/templates/exception.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/templates/exception.php b/apps/dav/templates/exception.php index 9c09cbca444..8f922e22a38 100644 --- a/apps/dav/templates/exception.php +++ b/apps/dav/templates/exception.php @@ -22,12 +22,12 @@ style('core', ['styles', 'header']); /** @param $_ array */ ?> -<span class="error error-wide"> +<div class="body-login-container update"> <h2><?php p($_['title']) ?></h2> <h3><strong><?php p($l->t('Technical details')) ?></strong></h3> - <ul> + <ul class="infogroup"> <li><?php p($l->t('Remote Address: %s', $_['remoteAddr'])) ?></li> <li><?php p($l->t('Request ID: %s', $_['requestID'])) ?></li> </ul> -</span> +</div> |