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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 193-199 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
193
('maxoutstanding','5','','maximum amount withstanding to be able make holds','Integer'),
193
('maxoutstanding','5','','maximum amount withstanding to be able make holds','Integer'),
194
('maxRecordsForFacets','20',NULL,NULL,'Integer'),
194
('maxRecordsForFacets','20',NULL,NULL,'Integer'),
195
('maxreserves','50','','Define maximum number of holds a patron can place','Integer'),
195
('maxreserves','50','','Define maximum number of holds a patron can place','Integer'),
196
('minPasswordLength','3',NULL,'Specify the minimum length of a patron/staff password','free'),
196
('minPasswordLength','12',NULL,'Specify the minimum length of a patron/staff password','free'),
197
('NewItemsDefaultLocation','','','If set, all new items will have a location of the given Location Code ( Authorized Value type LOC )',''),
197
('NewItemsDefaultLocation','','','If set, all new items will have a location of the given Location Code ( Authorized Value type LOC )',''),
198
('noissuescharge','5','','Define maximum amount withstanding before check outs are blocked','Integer'),
198
('noissuescharge','5','','Define maximum amount withstanding before check outs are blocked','Integer'),
199
('noItemTypeImages','0',NULL,'If ON, disables item-type images','YesNo'),
199
('noItemTypeImages','0',NULL,'If ON, disables item-type images','YesNo'),
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 742-748 $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,ty Link Here
742
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACdefaultSortField',NULL,'Specify the default field used for sorting','relevance|popularity|call_number|pubdate|acqdate|title|author','Choice')");
742
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACdefaultSortField',NULL,'Specify the default field used for sorting','relevance|popularity|call_number|pubdate|acqdate|title|author','Choice')");
743
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACdefaultSortOrder',NULL,'Specify the default sort order','asc|dsc|za|az','Choice')");
743
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('OPACdefaultSortOrder',NULL,'Specify the default sort order','asc|dsc|za|az','Choice')");
744
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('staffClientBaseURL','','Specify the base URL of the staff client',NULL,'free')");
744
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('staffClientBaseURL','','Specify the base URL of the staff client',NULL,'free')");
745
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('minPasswordLength',3,'Specify the minimum length of a patron/staff password',NULL,'free')");
745
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('minPasswordLength','12','Specify the minimum length of a patron/staff password',NULL,'free')");
746
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('noItemTypeImages',0,'If ON, disables item-type images',NULL,'YesNo')");
746
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('noItemTypeImages',0,'If ON, disables item-type images',NULL,'YesNo')");
747
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('emailLibrarianWhenHoldIsPlaced',0,'If ON, emails the librarian whenever a hold is placed',NULL,'YesNo')");
747
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('emailLibrarianWhenHoldIsPlaced',0,'If ON, emails the librarian whenever a hold is placed',NULL,'YesNo')");
748
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('holdCancelLength','','Specify how many days before a hold is canceled',NULL,'free')");
748
$dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('holdCancelLength','','Specify how many days before a hold is canceled',NULL,'free')");
749
- 

Return to bug 9920