@@ -, +, @@ DB upgrade --- installer/data/mysql/updatedatabase.pl | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -6349,44 +6349,44 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $DBversion = "3.11.00.016"; if ( CheckVersion($DBversion) ) { - $dbh->do(q{ - UPDATE userflags SET flagdesc="Required for staff login. Staff access, allows viewing of catalogue in staff client." where flag="catalogue"; + $dbh->do{(q{ + UPDATE userflags SET flagdesc="Required for staff login. Staff access, allows viewing of catalogue in staff client." where flagdesc="Modify login / permissions for staff users"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Edit Authorities" where flag="editauthorities"; + UPDATE userflags SET flagdesc="Edit Authorities" where flagdesc="Allow to edit authorities"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Allow access to the reports module" where flag="reports"; + UPDATE userflags SET flagdesc="Allow access to the reports module" where flagdesc="Allow to access to the reports module"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Set library management parameters (deprecated)" where flag="management"; + UPDATE userflags SET flagdesc="Set library management parameters (deprecated)" where flagdesc="Set library management parameters"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Manage serial subscriptions" where flag="serials"; + UPDATE userflags SET flagdesc="Manage serial subscriptions" where flagdesc="Allow to manage serials subscriptions"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Manage patrons fines and fees" where flag="updatecharges"; + UPDATE userflags SET flagdesc="Manage patrons fines and fees" where flagdesc="Update borrower charges"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Check out and check in items" where flag="circulate"; + UPDATE userflags SET flagdesc="Check out and check in items" where flagdesc="Circulate books"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Manage Koha system settings (Administration panel)" where flag="parameters"; + UPDATE userflags SET flagdesc="Manage Koha system settings (Administration panel)" where flagdesc="Set Koha system parameters"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Add or modify patrons" where flag="borrowers"; + UPDATE userflags SET flagdesc="Add or modify patrons" where flagdesc="Add or modify borrowers"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Use all tools (expand for granular tools permissions)" where flag="tools"; + UPDATE userflags SET flagdesc="Use all tools (expand for granular tools permissions)" where flagdesc="Use tools (export, import, barcodes)"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Allow staff members to modify permissions for other staff members" where flag="staffaccess"; + UPDATE userflags SET flagdesc="Allow staff members to modify permissions for other staff members" where flagdesc="Set user permissions"; }); $dbh->do(q{ - UPDATE userflags SET flagdesc="Perform batch modification of patrons" where flag="edit_patrons"; + UPDATE userflags SET flagdesc="Perform batch modification of patrons" where flagdesc="Perform batch modifivation of patrons"; }); - print "Upgrade to $DBversion done (Bug 9382 - refresh permission descriptions to make more sense)\n"; + print "Upgrade to $DBversion done (Bug 9382 (updated with bug 9745) - refresh permission descriptions to make more sense)\n"; SetVersion ($DBversion); } --