Lines 468-482
if ( C4::Context->preference('WebBasedSelfCheck')
Link Here
|
468 |
# Test YAML system preferences |
468 |
# Test YAML system preferences |
469 |
# FIXME: This is list of current YAML formatted prefs, should by type of preference |
469 |
# FIXME: This is list of current YAML formatted prefs, should by type of preference |
470 |
my @yaml_prefs = ( |
470 |
my @yaml_prefs = ( |
471 |
"UpdateNotForLoanStatusOnCheckin", |
|
|
472 |
"OpacHiddenItems", |
473 |
"BibtexExportAdditionalFields", |
471 |
"BibtexExportAdditionalFields", |
474 |
"RisExportAdditionalFields", |
472 |
"ItemsDeniedRenewal", |
475 |
"UpdateItemWhenLostFromHoldList", |
|
|
476 |
"MarcFieldsToOrder", |
473 |
"MarcFieldsToOrder", |
477 |
"MarcItemFieldsToOrder", |
474 |
"MarcItemFieldsToOrder", |
|
|
475 |
"OpacHiddenItems", |
476 |
"RisExportAdditionalFields", |
478 |
"UpdateitemLocationOnCheckin", |
477 |
"UpdateitemLocationOnCheckin", |
479 |
"ItemsDeniedRenewal" |
478 |
"UpdateItemWhenLostFromHoldList", |
|
|
479 |
"UpdateNotForLoanStatusOnCheckin", |
480 |
"UpdateNotForLoanStatusOnCheckout", |
480 |
); |
481 |
); |
481 |
my @bad_yaml_prefs; |
482 |
my @bad_yaml_prefs; |
482 |
foreach my $syspref (@yaml_prefs) { |
483 |
foreach my $syspref (@yaml_prefs) { |
483 |
- |
|
|