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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 429-434 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
429
('SubscriptionHistory','simplified','simplified|full','Define the display preference for serials issue history in OPAC','Choice'),
429
('SubscriptionHistory','simplified','simplified|full','Define the display preference for serials issue history in OPAC','Choice'),
430
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
430
('SubscriptionLog','1',NULL,'If ON, enables subscriptions log','YesNo'),
431
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
431
('suggestion','1','','If ON, enables patron suggestions feature in OPAC','YesNo'),
432
('SupportsAuthorizedValues','itemtypes','itemtypes|ccode|loc','Authorized values representing document physical support','Choice'),
432
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
433
('SuspendHoldsIntranet','1','Allow holds to be suspended from the intranet.',NULL,'YesNo'),
433
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
434
('SuspendHoldsOpac','1','Allow holds to be suspended from the OPAC.',NULL,'YesNo'),
434
('SvcMaxReportRows','10',NULL,'Maximum number of rows to return via the report web service.','Integer'),
435
('SvcMaxReportRows','10',NULL,'Maximum number of rows to return via the report web service.','Integer'),
(-)a/installer/data/mysql/updatedatabase.pl (+7 lines)
Lines 11237-11242 if ( CheckVersion($DBversion) ) { Link Here
11237
    SetVersion($DBversion);
11237
    SetVersion($DBversion);
11238
}
11238
}
11239
11239
11240
$DBversion = "3.19.00.XXX";
11241
if ( CheckVersion($DBversion) ) {
11242
   $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('SupportsAuthorizedValues', 'itemtypes', 'Authorized values representing document physical support','itemtypes|ccode|loc','Choice')");
11243
   print "Upgrade to $DBversion done (Bug 9223: Add SupportsAuthorizedValues syspref)\n";
11244
   SetVersion ($DBversion);
11245
}
11246
11240
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11247
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11241
# SEE bug 13068
11248
# SEE bug 13068
11242
# if there is anything in the atomicupdate, read and execute it.
11249
# 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