From 8e9ae27c4a75234adce7fcbe58ef05a8b769a9c1 Mon Sep 17 00:00:00 2001 From: Ere Maijala <ere.maijala@helsinki.fi> Date: Mon, 14 Mar 2016 11:32:00 +0200 Subject: [PATCH] Fixed refreshing tag list after adding a tag (refreshTagList() doesn't work with the event parameters). --- themes/bootstrap3/templates/record/addtag.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/templates/record/addtag.phtml b/themes/bootstrap3/templates/record/addtag.phtml index 563cda1b8e1..2d0ea2f33ac 100644 --- a/themes/bootstrap3/templates/record/addtag.phtml +++ b/themes/bootstrap3/templates/record/addtag.phtml @@ -9,7 +9,7 @@ ?> <div class="record"> <h2><?=$this->transEsc('Add Tags') ?></h2> - <form method="post" name="tagRecord" class="form-horizontal" data-lightbox-onclose="refreshTagList"> + <form method="post" name="tagRecord" class="form-horizontal" data-lightbox-onclose="refreshTagList();"> <input type="hidden" name="submit" value="1" /> <input type="hidden" name="id" value="<?=$this->escapeHtmlAttr($this->driver->getUniqueId())?>" /> <input type="hidden" name="source" value="<?=$this->escapeHtmlAttr($this->driver->getSourceIdentifier())?>" /> -- GitLab