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

(-)a/installer/data/mysql/sysprefs.sql (-2 / +1 lines)
Lines 397-408 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
397
('TrackClicks','0',NULL,'Track links clicked','Integer'),
397
('TrackClicks','0',NULL,'Track links clicked','Integer'),
398
('TransfersMaxDaysWarning','3',NULL,'Define the days before a transfer is suspected of having a problem','Integer'),
398
('TransfersMaxDaysWarning','3',NULL,'Define the days before a transfer is suspected of having a problem','Integer'),
399
('TransferWhenCancelAllWaitingHolds','0',NULL,'Transfer items when cancelling all waiting holds','YesNo'),
399
('TransferWhenCancelAllWaitingHolds','0',NULL,'Transfer items when cancelling all waiting holds','YesNo'),
400
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.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.', 'Free'),
401
('UNIMARCAuthorityField100','afrey50      ba0',NULL,'Define the contents of UNIMARC authority control field 100 position 08-35','Textarea'),
400
('UNIMARCAuthorityField100','afrey50      ba0',NULL,'Define the contents of UNIMARC authority control field 100 position 08-35','Textarea'),
402
('UNIMARCAuthorityField100','afrey50      ba0',NULL,NULL,'Textarea'),
403
('UNIMARCAuthorsFacetsSeparator',', ',NULL,'UNIMARC authors facets separator','short'),
401
('UNIMARCAuthorsFacetsSeparator',', ',NULL,'UNIMARC authors facets separator','short'),
404
('UNIMARCField100Language','fre',NULL,'UNIMARC field 100 default language','short'),
402
('UNIMARCField100Language','fre',NULL,'UNIMARC field 100 default language','short'),
405
('UniqueItemFields','barcode','','Space-separated list of fields that should be unique (used in acquisition module for item creation). Fields must be valid SQL column names of items table','Free'),
403
('UniqueItemFields','barcode','','Space-separated list of fields that should be unique (used in acquisition module for item creation). Fields must be valid SQL column names of items table','Free'),
404
('UpdateNotForLoanStatusOnCheckin', '', 'NULL', 'This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value it will be updated to the right-hand value. E.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.', 'Free'),
406
('UpdateTotalIssuesOnCirc','0',NULL,'Whether to update the totalissues field in the biblio on each circ.','YesNo'),
405
('UpdateTotalIssuesOnCirc','0',NULL,'Whether to update the totalissues field in the biblio on each circ.','YesNo'),
407
('uppercasesurnames','0',NULL,'If ON, surnames are converted to upper case in patron entry form','YesNo'),
406
('uppercasesurnames','0',NULL,'If ON, surnames are converted to upper case in patron entry form','YesNo'),
408
('URLLinkText','',NULL,'Text to display as the link anchor in the OPAC','free'),
407
('URLLinkText','',NULL,'Text to display as the link anchor in the OPAC','free'),
(-)a/t/db_dependent/Circulation_issue.t (-3 / +2 lines)
Lines 331-338 is_deeply( Link Here
331
    "With issuing rules (renewal allowed, 1 remaining) and with a valid parameter, Getrenewcount of item1 returns 0 renews left"
331
    "With issuing rules (renewal allowed, 1 remaining) and with a valid parameter, Getrenewcount of item1 returns 0 renews left"
332
);
332
);
333
333
334
334
my $itemnumber;
335
my ($biblionumber, $biblioitemnumber, $itemnumber) = C4::Items::AddItem(
335
($biblionumber, $biblioitemnumber, $itemnumber) = C4::Items::AddItem(
336
    {
336
    {
337
        barcode        => 'barcode_3',
337
        barcode        => 'barcode_3',
338
        itemcallnumber => 'callnumber3',
338
        itemcallnumber => 'callnumber3',
339
- 

Return to bug 11629