From 4f0a2390f91b46e8defe8809ec14b3f736982743 Mon Sep 17 00:00:00 2001 From: Imani Thomas Date: Mon, 29 Sep 2025 16:23:19 +0000 Subject: [PATCH] Bug 39142: fixing capitalization as per coding guidelines https://wiki.koha-community.org/wiki/Coding_Guidelines#HTML4:_Upper_and_lower_cases_in_strings --- installer/data/mysql/atomicupdate/Bug_39142.pl | 2 +- installer/data/mysql/mandatory/userflags.sql | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/atomicupdate/Bug_39142.pl b/installer/data/mysql/atomicupdate/Bug_39142.pl index 7dd68de46d..0820a3e309 100755 --- a/installer/data/mysql/atomicupdate/Bug_39142.pl +++ b/installer/data/mysql/atomicupdate/Bug_39142.pl @@ -11,7 +11,7 @@ return { $dbh->do( q{ INSERT IGNORE INTO userflags (bit, flag, flagdesc, defaulton) - VALUES (31, 'debug', 'Show Debug Interface', 0) + VALUES (31, 'debug', 'Show debug interface', 0) } ); diff --git a/installer/data/mysql/mandatory/userflags.sql b/installer/data/mysql/mandatory/userflags.sql index 45e552d6f8..de18578e51 100644 --- a/installer/data/mysql/mandatory/userflags.sql +++ b/installer/data/mysql/mandatory/userflags.sql @@ -28,5 +28,5 @@ INSERT INTO userflags (bit, flag, flagdesc, defaulton) VALUES (28, 'erm', 'Manage electronic resources', 0), (29, 'loggedinlibrary', 'Change logged in library', 0), (30, 'preservation', 'Preservation module', 0), -(31, 'debug', 'Show Debug Interface', 0) +(31, 'debug', 'Show debug interface', 0) ; diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc index 941fb6b8ce..1c91ebda0f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc @@ -88,7 +88,7 @@ Manage the preservation module ([% name | html %]) [%- CASE 'debug' -%] - Display the Debug UI + Display the debug interface ([% name | html %]) [%- END -%] [%- END -%] -- 2.39.5