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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 410-415 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
410
('SubscriptionHistory','simplified','simplified|full','Define the display preference for serials issue history in OPAC','Choice'),
410
('SubscriptionHistory','simplified','simplified|full','Define the display preference for serials issue history in OPAC','Choice'),
411
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
411
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
412
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
412
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
413
('SupportsAuthorizedValues','itemtypes','itemtypes|ccode|loc','Authorized values representing document physical support','Choice'),
413
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
414
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
414
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
415
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
415
('SvcMaxReportRows','10',NULL,'Maximum number of rows to return via the report web service.','Integer'),
416
('SvcMaxReportRows','10',NULL,'Maximum number of rows to return via the report web service.','Integer'),
(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 10554-10559 if ( CheckVersion($DBversion) ) { Link Here
10554
    SetVersion($DBversion);
10554
    SetVersion($DBversion);
10555
}
10555
}
10556
10556
10557
$DBversion = "3.19.00.XXX";
10558
if ( CheckVersion($DBversion) ) {
10559
   $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('SupportsAuthorizedValues', 'itemtypes', 'Authorized values representing document physical support','itemtypes|ccode|loc','Choice')");
10560
   print "Upgrade to $DBversion done (Bug 9223: Add SupportsAuthorizedValues syspref)\n";
10561
   SetVersion ($DBversion);
10562
}
10563
10557
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10564
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
10558
# SEE bug 13068
10565
# SEE bug 13068
10559
# if there is anything in the atomicupdate, read and execute it.
10566
# if there is anything in the atomicupdate, read and execute it.
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-1 / +9 lines)
Lines 125-130 Cataloging: Link Here
125
            - 'MARC21: "952$a 952$b 952$c"'
125
            - 'MARC21: "952$a 952$b 952$c"'
126
            - Note that the FA framework is excluded from the permission.
126
            - Note that the FA framework is excluded from the permission.
127
            - If the pref is empty, no fields are restricted.
127
            - If the pref is empty, no fields are restricted.
128
        -
129
            - pref: SupportsAuthorizedValues
130
              default: itemtypes
131
              choices:
132
                  itemtypes: "Item type"
133
                  loc: "Shelving Location"
134
                  ccode: "Collection code"
135
            - represents document physical support.
136
        -
128
    Display:
137
    Display:
129
        -
138
        -
130
            - 'Separate multiple displayed authors, series or subjects with '
139
            - 'Separate multiple displayed authors, series or subjects with '
131
- 

Return to bug 9223