From 7bbc6c071ad639483e9ecda6ca79e770d00b9bba Mon Sep 17 00:00:00 2001 From: Jessica Zairo Date: Wed, 31 Dec 2025 16:50:22 +0000 Subject: [PATCH] Bug 38876: (follow-up) fix db rev syntax was wrong for dbrev To test apply patches dbic updatedatatbase koha-mysql kohadev select * from systempreferences where variable='UpdateNotForLoanStatusOnCheckout'; confirm the updated description Signed-off-by: Owen Leonard Signed-off-by: Lucas Gass --- installer/data/mysql/atomicupdate/bug_38876.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_38876.pl b/installer/data/mysql/atomicupdate/bug_38876.pl index aba78c9b76c..091eeefba00 100755 --- a/installer/data/mysql/atomicupdate/bug_38876.pl +++ b/installer/data/mysql/atomicupdate/bug_38876.pl @@ -10,7 +10,7 @@ return { # Do you stuffs here $dbh->do( - q{UPDATE systempreferences (explanation) VALUES ('This is a list of value pairs. When an item is checked out, if its not for loan value matches the value on the left, then the items not for loan value will be updated to the value on the right. \nE.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.') WHERE variable='UpdateNotForLoanStatusOnCheckout'} + q{UPDATE systempreferences set explanation="This is a list of value pairs. When an item is checked out, if its not for loan value matches the value on the left, then the items not for loan value will be updated to the value on the right. \nE.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line." WHERE variable='UpdateNotForLoanStatusOnCheckout'} ); # sysprefs -- 2.39.5