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 73-78 function update_category_code(category_code) { Link Here
73
    $(mytables).find("li").hide();
73
    $(mytables).find("li").hide();
74
    $(mytables).find(" li[data-category_code='"+category_code+"']").show();
74
    $(mytables).find(" li[data-category_code='"+category_code+"']").show();
75
    $(mytables).find(" li[data-category_code='']").show();
75
    $(mytables).find(" li[data-category_code='']").show();
76
77
    //Change password length hint
78
    var hint = $("#password").siblings(".hint").first();
79
    var min_length = $('select'+category_selector+' option:selected').data('pwdLength');
80
    var hint_string = MSG_PASSWORD_LENGTH.format(min_length);
81
    hint.html(hint_string);
76
}
82
}
77
83
78
function select_user(borrowernumber, borrower, relationship) {
84
function select_user(borrowernumber, borrower, relationship) {
79
- 

Return to bug 27430