From 51d8ebbf60f2e63b9437b067a0857fbf5545c49d Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 3 Jan 2023 16:58:40 +0100 Subject: [PATCH] improve html for listing errors --- views/bootstrap/class.Indexer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Indexer.php b/views/bootstrap/class.Indexer.php index 4ac0b3cf5..5549d0f44 100644 --- a/views/bootstrap/class.Indexer.php +++ b/views/bootstrap/class.Indexer.php @@ -165,7 +165,7 @@ function check_queue() { else $('#status_'+data.data).html(''); } else { - $('#update_messages').append('

Docid: ' + data.data + ' (' + data.mimetype + ')

' + '

Cmd: ' + data.cmd + '

' + data.message+'
'); + $('#update_messages').append('
Docid: ' + data.data + ' (' + data.mimetype + ')
' + 'Cmd: ' + data.cmd + '
' + data.message+'
'); $('#status_'+data.data).html(''); noty({ text: '

Docid: ' + data.data + ' (' + data.mimetype + ')

' + '

Cmd: ' + data.cmd + '

' + data.message,