From d4324fbf00726934515e8aa4766fdfe288831a89 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Fri, 14 Feb 2020 12:25:24 -0500 Subject: [PATCH] Fix list item edit delete not refreshing. --- themes/bootstrap3/templates/confirm/confirm.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/templates/confirm/confirm.phtml b/themes/bootstrap3/templates/confirm/confirm.phtml index 910fa886991..93c1f83f3b0 100644 --- a/themes/bootstrap3/templates/confirm/confirm.phtml +++ b/themes/bootstrap3/templates/confirm/confirm.phtml @@ -5,7 +5,7 @@ <?=$this->flashmessages();?> <div id="popupDetails" class="confirmDialog"> - <form class="pull-left" action="<?=$this->escapeHtmlAttr($this->confirm)?>" method="post"> + <form class="pull-left" action="<?=$this->escapeHtmlAttr($this->confirm)?>" method="post" data-lightbox-onclose="VuFind.refreshPage"> <?php if (isset($this->extras)): ?> <?php foreach ($this->extras as $extra => $value): ?> <?php if (is_array($value)): ?> -- GitLab