From 831281a37597b703511482a09ff56c7a79f4726a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9verine=20QUEUNE?= <severine.queune@bulac.fr>
Date: Fri, 9 Apr 2021 15:25:16 +0200
Subject: [PATCH] Bug 28121: Correct the place of the question mark

Question mark is wonrgly placed when you want to delete a desk.
Test plan :
- Enable 'UseCirculationDesks'
- On Administration > Desks menu, create a new desk
- Try to delete it : note the question mark in inside the quotation
marks
- Apply patch and refresh page
- Question mark should now be after the last quotation mark

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt
index 73e6a9a86a..04e0064a0f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt
@@ -128,7 +128,7 @@
 
 [% IF op == 'delete_confirm' %]
     <div class="dialog alert">
-        <h3>Delete desk "[% desk.desk_name | html %]?"</h3>
+        <h3>Delete desk "[% desk.desk_name | html %]"?</h3>
         <table>
             <tr><th>Desk ID</th>
                 <td>[% desk.desk_id | html %]</td>
-- 
2.11.0