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

(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 386-388 INSERT INTO systempreferences (variable,value,explanation,type) VALUES('OPACdidy Link Here
386
INSERT INTO systempreferences (variable,value,explanation,type) VALUES('INTRAdidyoumean',NULL,'Did you mean? configuration for the Intranet. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free');
386
INSERT INTO systempreferences (variable,value,explanation,type) VALUES('INTRAdidyoumean',NULL,'Did you mean? configuration for the Intranet. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free');
387
INSERT INTO systempreferences (variable, value, options, explanation, type) VALUES ('BlockReturnOfWithdrawnItems', '1', '0', 'If enabled, items that are marked as withdrawn cannot be returned.', 'YesNo');
387
INSERT INTO systempreferences (variable, value, options, explanation, type) VALUES ('BlockReturnOfWithdrawnItems', '1', '0', 'If enabled, items that are marked as withdrawn cannot be returned.', 'YesNo');
388
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('HoldsToPullStartDate','2','Set the default start date for the Holds to pull list to this many days ago',NULL,'Integer');
388
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('HoldsToPullStartDate','2','Set the default start date for the Holds to pull list to this many days ago',NULL,'Integer');
389
INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AcqNewOrderEmptyDefaults','','Defaults for fund and itemtype on neworderempty form',NULL,'Free');
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +7 lines)
Lines 6055-6060 if (C4::Context->preference("Version") < TransformToNum($DBversion)) { Link Here
6055
   SetVersion ($DBversion);
6055
   SetVersion ($DBversion);
6056
}
6056
}
6057
6057
6058
$DBversion = "3.09.00.XXX";
6059
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
6060
    $dbh->do("INSERT IGNORE INTO systempreferences (variable,value,explanation,type) VALUES('AcqNewOrderEmptyDefaults','','Defaults for fund and itemtype on neworderempty form','Free')");
6061
   print "Upgrade to $DBversion done (Bug 9088: Default values for fund and item type on neworderempty form)\n";
6062
   SetVersion ($DBversion);
6063
}
6064
6058
=head1 FUNCTIONS
6065
=head1 FUNCTIONS
6059
6066
6060
=head2 TableExists($table)
6067
=head2 TableExists($table)
6061
- 

Return to bug 9088