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

(-)a/installer/data/mysql/en/mandatory/sysprefs.sql (+1 lines)
Lines 283-285 INSERT INTO systempreferences (variable,value,explanation,options,type)VALUES('A Link Here
283
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckID','','Staff ID with circulation rights to be used for automatic web-based self-check. Only applies if AutoSelfCheckAllowed syspref is turned on.','','free');
283
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckID','','Staff ID with circulation rights to be used for automatic web-based self-check. Only applies if AutoSelfCheckAllowed syspref is turned on.','','free');
284
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckPass','','Password to be used for automatic web-based self-check. Only applies if AutoSelfCheckAllowed syspref is turned on.','','free');
284
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckPass','','Password to be used for automatic web-based self-check. Only applies if AutoSelfCheckAllowed syspref is turned on.','','free');
285
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('soundon','0','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','','YesNo');
285
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('soundon','0','Enable circulation sounds during checkin and checkout in the staff interface.  Not supported by all web browsers yet.','','YesNo');
286
INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES ('AllowIssuingForPatronsWithOverdues',  '1', NULL ,  'If enabled, a patron can be issued items even if the patron has overdue items.',  'YesNo');
(-)a/installer/data/mysql/fr-FR/1-Obligatoire/unimarc_standard_systemprefs.sql (+1 lines)
Lines 286-288 INSERT INTO systempreferences (variable,value,explanation,options,type)VALUES('A Link Here
286
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckID','','Identifiant Bibliothécaire avec droits de circulation qui sera utilisé pour les prêt auto-contré. Ne s''applique que dans les cas de l''activation de la préférence AutoSelfCheckout.','','free');
286
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckID','','Identifiant Bibliothécaire avec droits de circulation qui sera utilisé pour les prêt auto-contré. Ne s''applique que dans les cas de l''activation de la préférence AutoSelfCheckout.','','free');
287
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckPass','','Mot de passe utilisé pour le prêt autocontrôlé. Ne s''applique que dans le cas de l''activation de la préférence AutoSelfCheckout.','','free');
287
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('AutoSelfCheckPass','','Mot de passe utilisé pour le prêt autocontrôlé. Ne s''applique que dans le cas de l''activation de la préférence AutoSelfCheckout.','','free');
288
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('soundon','0','Activer les événements sonores de circulation pendant le prêt et le retour dans l''intranet. N''est pas encore supporté par tous les navigateurs web.','','YesNo');
288
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('soundon','0','Activer les événements sonores de circulation pendant le prêt et le retour dans l''intranet. N''est pas encore supporté par tous les navigateurs web.','','YesNo');
289
INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES ('AllowIssuingForPatronsWithOverdues',  '1', NULL ,  'If enabled, a patron can be issued items even if the patron has overdue items.',  'YesNo');
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +7 lines)
Lines 3520-3525 if (C4::Context->preference('Version') < TransformToNum($DBversion)){ Link Here
3520
    SetVersion ($DBversion);
3520
    SetVersion ($DBversion);
3521
}
3521
}
3522
3522
3523
$DBversion = '3.01.00.125';
3524
if (C4::Context->preference('Version') < TransformToNum($DBversion)){
3525
    $dbh->do("INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES ('AllowIssuingForPatronsWithOverdues',  '1', NULL ,  'If enabled, a patron can be issued items even if the patron has overdue items.',  'YesNo')");
3526
    print "Upgrade to $DBversion done (bug 4036: Add syspref AllowIssuingForPatronsWithOverdues)\n";
3527
    SetVersion ($DBversion);
3528
}
3529
3523
=item DropAllForeignKeys($table)
3530
=item DropAllForeignKeys($table)
3524
3531
3525
  Drop all foreign keys of the table $table
3532
  Drop all foreign keys of the table $table
3526
- 

Return to bug 4036