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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (+1 lines)
Lines 1705-1710 legend:hover { Link Here
1705
        var LABEL_SET_TO_PATRON = _("Set to patron");
1705
        var LABEL_SET_TO_PATRON = _("Set to patron");
1706
        var LABEL_AGE = _("Age");
1706
        var LABEL_AGE = _("Age");
1707
        var MSG_MESSAGING_DFEAULTS = _("Change messaging preferences to default for this category?");
1707
        var MSG_MESSAGING_DFEAULTS = _("Change messaging preferences to default for this category?");
1708
        var MSG_PASSWORD_LENGTH = _("Minimum password length: %s");
1708
1709
1709
        [% IF quickadd && opadd  && !check_member %]
1710
        [% IF quickadd && opadd  && !check_member %]
1710
            $(document).ready(function () {
1711
            $(document).ready(function () {
(-)a/koha-tmpl/intranet-tmpl/prog/js/members.js (-1 / +6 lines)
Lines 68-73 function update_category_code(category_code) { Link Here
68
    $(mytables).find("li").hide();
68
    $(mytables).find("li").hide();
69
    $(mytables).find(" li[data-category_code='"+category_code+"']").show();
69
    $(mytables).find(" li[data-category_code='"+category_code+"']").show();
70
    $(mytables).find(" li[data-category_code='']").show();
70
    $(mytables).find(" li[data-category_code='']").show();
71
72
    //Change password length hint
73
    var hint = $("#password").siblings(".hint").first();
74
    var min_length = $('select'+category_selector+' option:selected').data('pwdLength');
75
    var hint_string = MSG_PASSWORD_LENGTH.format(min_length);
76
    hint.html(hint_string);
71
}
77
}
72
78
73
function select_user(borrowernumber, borrower, relationship) {
79
function select_user(borrowernumber, borrower, relationship) {
74
- 

Return to bug 27430