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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-2 / +5 lines)
Lines 526-532 fieldset.rows table { clear: none; margin: 0; } Link Here
526
        [% FOREACH field IN dont_export_field_loop %]
526
        [% FOREACH field IN dont_export_field_loop %]
527
            tags.push("[% field.fieldid | html %]");
527
            tags.push("[% field.fieldid | html %]");
528
        [% END %]
528
        [% END %]
529
        var mana_enabled = [% IF (Koha.Preference('Mana') == 1 && mana_url) %]1[% ELSE %]0[% END %];
529
        [%- IF (Koha.Preference('Mana') == 1 && mana_url) -%]
530
            var mana_enabled = 1;
531
        [%- ELSE -%]
532
            var mana_enabled = 0;
533
        [%- END -%]
530
        var MSG_LINK_TO_VENDOR = _("If you wish to claim late or missing issues you must link this subscription to a vendor. Click OK to ignore or Cancel to return and enter a vendor");
534
        var MSG_LINK_TO_VENDOR = _("If you wish to claim late or missing issues you must link this subscription to a vendor. Click OK to ignore or Cancel to return and enter a vendor");
531
        var MSG_LINK_BIBLIO = _("You must choose or create a bibliographic record");
535
        var MSG_LINK_BIBLIO = _("You must choose or create a bibliographic record");
532
        var MSG_REQUIRED_SUB_LENGTH = _("You must choose a subscription length or an end date.");
536
        var MSG_REQUIRED_SUB_LENGTH = _("You must choose a subscription length or an end date.");
533
- 

Return to bug 23713