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

(-)a/koha-tmpl/intranet-tmpl/prog/js/cataloging_additem.js (-2 / +1 lines)
Lines 134-140 $(document).ready(function(){ Link Here
134
134
135
function CheckTemplateForm(f) {
135
function CheckTemplateForm(f) {
136
    if ( $('#replace_template_id').val() == "0" &&  $('#template_name').val() == "" ) {
136
    if ( $('#replace_template_id').val() == "0" &&  $('#template_name').val() == "" ) {
137
        alert(MSG_TEMPLATE_NAME_REQUIRED);
137
        alert(__("Template name is required."));
138
        return false;
138
        return false;
139
    } else {
139
    } else {
140
        return true;
140
        return true;
141
- 

Return to bug 24606