diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-08-01 18:54:48 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-08-01 18:54:48 +0200 |
commit | 4574698443fd38ef4e31ce126838474369c7a30a (patch) | |
tree | ea9e9f245a6d8549a3c54e82225cfcbef50c4994 | |
parent | ede469a240f328ce46a238f94850b6950ada2b40 (diff) | |
download | nextcloud-server-4574698443fd38ef4e31ce126838474369c7a30a.tar.gz nextcloud-server-4574698443fd38ef4e31ce126838474369c7a30a.zip |
Fix double container on 'Possible CSRF attack' page
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | core/js/update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js index cd5ee8b0801..b2a25795587 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -58,7 +58,7 @@ $(window).off('beforeunload.inprogress'); self.setErrorMessage(message); message = t('core', 'Please reload the page.'); - $('<span>').addClass('error').append('<a href=".">'+message+'</a><br />').appendTo($el); + $('<p>').append('<a href=".">'+message+'</a>').appendTo($el); updateEventSource.close(); }); updateEventSource.listen('failure', function(message) { |