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

(-)a/installer/data/mysql/atomicupdate/bug_17509_add_NotifyToReturnItemWhenHoldIsPlaced_syspref.sql (-1 / +2 lines)
Line 1 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemWhenHoldIsPlaced', '0', 'If ON, notifies the borrowers to return an item whenever a hold is placed on it', NULL, 'YesNo');
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemWhenHoldIsPlaced', '0', 'If ON, notifies the patrons to return an item whenever a hold is placed on it', NULL, 'YesNo');
2
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('NotifyToReturnItemFromLibrary', 'PatronLibrary', 'Restricts which libraries to take into consideration when notifying patrons to return items on hold', 'PatronLibrary|AnyLibrary', 'Choice');
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 278-283 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
278
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
278
('NoticeBcc','','','Email address to bcc outgoing notices sent by email','free'),
279
('NoticeCSS','',NULL,'Notices CSS url.','free'),
279
('NoticeCSS','',NULL,'Notices CSS url.','free'),
280
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
280
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
281
('NotifyToReturnItemFromLibrary','PatronLibrary','PatronLibrary|AnyLibrary','Restricts which libraries to take into consideration when notifying patrons to return items on hold','Choice'),
281
('NotifyToReturnItemWhenHoldIsPlaced','0',NULL,'If ON, notifies the borrowers to return an item whenever a hold is placed on it','YesNo'),
282
('NotifyToReturnItemWhenHoldIsPlaced','0',NULL,'If ON, notifies the borrowers to return an item whenever a hold is placed on it','YesNo'),
282
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
283
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
283
('NovelistSelectPassword','',NULL,'Enable Novelist user Profile','free'),
284
('NovelistSelectPassword','',NULL,'Enable Novelist user Profile','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +6 lines)
Lines 592-598 Circulation: Link Here
592
              choices:
592
              choices:
593
                  yes: Enable
593
                  yes: Enable
594
                  no:  "Don't enable"
594
                  no:  "Don't enable"
595
            - "sending an email to the borrowers to return an item whenever a hold request is placed on it."
595
            - sending an email to the patrons to return an item whenever a hold request is placed on it. If enabled, contact patrons from
596
            - pref: NotifyToReturnItemFromLibrary
597
              choices:
598
                  PatronLibrary: "patron's home library"
599
                  AnyLibrary:    "any library"
600
            - .
596
        -
601
        -
597
            - pref: DisplayMultiPlaceHold
602
            - pref: DisplayMultiPlaceHold
598
              choices:
603
              choices:
599
- 

Return to bug 17509