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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-12 lines)
Lines 94-111 $(document).ready(function() { Link Here
94
        else {return false;}
94
        else {return false;}
95
    });
95
    });
96
96
97
    $("#entryform").validate({
98
        rules: {
99
            password: {
100
                password_strong: true,
101
                password_no_spaces: true
102
            },
103
            password2: {
104
                password_match: true
105
            }
106
        }
107
    });
108
109
    $("#saverecord").click(function(){
97
    $("#saverecord").click(function(){
110
        if( check_form_borrowers() ){
98
        if( check_form_borrowers() ){
111
            $("#entryform").submit();
99
            $("#entryform").submit();
(-)a/koha-tmpl/intranet-tmpl/prog/js/members.js (-1 / +7 lines)
Lines 319-324 $(document).ready(function(){ Link Here
319
            },
319
            },
320
            B_email: {
320
            B_email: {
321
                email: true
321
                email: true
322
            },
323
            password: {
324
               password_strong: true,
325
               password_no_spaces: true
326
            },
327
            password2: {
328
               password_match: true
322
            }
329
            }
323
        },
330
        },
324
        submitHandler: function(form) {
331
        submitHandler: function(form) {
325
- 

Return to bug 19907