View | Details | Raw Unified | Return to bug 38876
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_38876.pl (-2 / +1 lines)
Lines 10-16 return { Link Here
10
10
11
        # Do you stuffs here
11
        # Do you stuffs here
12
        $dbh->do(
12
        $dbh->do(
13
            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'}
13
            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'}
14
        );
14
        );
15
15
16
        # sysprefs
16
        # sysprefs
17
- 

Return to bug 38876