From: Katrin Fischer Date: Mon, 17 Jun 2019 21:50:01 +0000 (+0000) Subject: Bug 23109: Improve description of staffaccess permission X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=dc0e8002fa6219cd49a5cc457191ef7855163c28 Bug 23109: Improve description of staffaccess permission Changes: Allow staff members to modify permissions for other staff members To: Allow staff members to modify permissions and passwords for other staff members. As suggested by Andre on the initial bug report. To test: - Go to any patron account and check More > permissions - Veriy the description is shown as noted above - Apply patch and run database update - Reload the page and verify the description has changed - Run the following SQL and verify the description in the database table matches as well: SELECT * FROM userflags where flag = "staffaccess"; Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize --- diff --git a/installer/data/mysql/atomicupdate/bug_23109_improve_staffaccess_description.perl b/installer/data/mysql/atomicupdate/bug_23109_improve_staffaccess_description.perl new file mode 100644 index 0000000..e820a21 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_23109_improve_staffaccess_description.perl @@ -0,0 +1,6 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE userflags SET flagdesc = 'Allow staff members to modify permissions and passwords for other staff members' WHERE flag = 'staffaccess'" ); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23109 - Improve description of staffacess permissiony)\n"; +} diff --git a/installer/data/mysql/userflags.sql b/installer/data/mysql/userflags.sql index 6823599..7712a9b 100644 --- a/installer/data/mysql/userflags.sql +++ b/installer/data/mysql/userflags.sql @@ -13,7 +13,7 @@ INSERT INTO userflags (bit, flag, flagdesc, defaulton) VALUES (14,'editauthorities','Edit authorities',0), (15,'serials','Manage serial subscriptions',0), (16,'reports','Allow access to the reports module',0), -(17,'staffaccess','Allow staff members to modify permissions for other staff members',0), +(17,'staffaccess','Allow staff members to modify permissions and passwords for other staff members',0), (18,'coursereserves','Course reserves',0), (19, 'plugins', 'Koha plugins', '0'), (20, 'lists', 'Lists', 0), diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc index d149cde..9fa6a62 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc @@ -43,7 +43,7 @@ Allow access to the reports module ([% name | html %]) [%- CASE 'staffaccess' -%] - Allow staff members to modify permissions for other staff members + Allow staff members to modify permissions and passwords for other staff members ([% name | html %]) [%- CASE 'coursereserves' -%] Course reserves