From 7a1de946b45f4a50674a356fd2141287938e1312 Mon Sep 17 00:00:00 2001
From: Owen Leonard <oleonard@myacpl.org>
Date: Wed, 2 Oct 2019 15:49:55 +0000
Subject: [PATCH] Bug 23611: (follow-up) Correct ID of table

The DataTable configuration wasn't working on the table showing an
individual category's authorized values because of a mismatch in the
table id. This patch corrects it.

To test, apply the patch and view the "Authorized values" page.

The initial list of categories should be displayed as a DataTable. Click
through to see the values defined for any category. The resulting table
of values should also be a functioning DataTable.
---
 koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt
index 69d2d0f4965..72f05fed33c 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt
@@ -209,7 +209,7 @@
 
     [% IF loop %]
 
-    <table id="table_authorized_values" class="authorized_values_table">
+    <table id="categoriest" class="authorized_values_table">
     <thead><tr>
         <th>Authorized value</th>
         <th>Description</th>
-- 
2.11.0