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

(-)a/cataloguing/addbiblio.pl (-1 / +1 lines)
Lines 183-189 sub MARCfindbreeding { Link Here
183
=cut
183
=cut
184
184
185
sub CreateKey {
185
sub CreateKey {
186
    return int(rand(1000000));
186
    return int(rand(10000000));
187
}
187
}
188
188
189
=head2 GetMandatoryFieldZ3950
189
=head2 GetMandatoryFieldZ3950
(-)a/koha-tmpl/intranet-tmpl/prog/js/cataloging.js (-2 / +1 lines)
Lines 506-512 function UnCloneField(index) { Link Here
506
 * This function create a random number
506
 * This function create a random number
507
 */
507
 */
508
function CreateKey(){
508
function CreateKey(){
509
    return parseInt(Math.random() * 100000);
509
    return parseInt(Math.random() * 10000000);
510
}
510
}
511
511
512
/* Functions developed for additem.tt */
512
/* Functions developed for additem.tt */
513
- 

Return to bug 37675