From 9c919c2a5d6feaca25fe0c1f3325c041e1e4d9e3 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 15 Jul 2025 01:09:18 +0000 Subject: [PATCH] Bug 40370: Remove incorrect DB audit instruction and fix HTML formatting This change removes the incorrect instruction from about.pl: "Run the following SQL to fix the database" and fixes the HTML formatting so that the line "-- Convert schema '' to '':;" is displayed correctly at the start of the line. Test plan: 0. Apply the patch 1. Go to http://localhost:8081/cgi-bin/koha/about.pl?tab=database 2. Note that "Run the following SQL to fix the database" no longer appears and "--Convert schema '' to '':;" starts at the beginning of the line instead of with leading whitespaces. --- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 94488c61da..d368b507bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -806,11 +806,7 @@ [% IF db_audit.diff_found %]
-

Run the following SQL to fix the database:

-
-                    [% db_audit.diff | $raw %]
-                
+
[% db_audit.diff | $raw %]
[% END %] [% END # tab=database %] -- 2.39.5