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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-toolbar.inc (-1 / +1 lines)
Lines 2-8 Link Here
2
//<![CDATA[
2
//<![CDATA[
3
function confirm_deletion() {
3
function confirm_deletion() {
4
    if (confirm(_("Are you sure you want to delete this vendor?"))) {
4
    if (confirm(_("Are you sure you want to delete this vendor?"))) {
5
        window.location="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]&op=delete";
5
        window.location="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid |html %]&op=delete";
6
    }
6
    }
7
}
7
}
8
//]]>
8
//]]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-2 / +1 lines)
Lines 95-101 Link Here
95
//<![CDATA[
95
//<![CDATA[
96
function confirm_deletion() {
96
function confirm_deletion() {
97
    if (confirm(_("Confirm deletion of this vendor ?"))) {
97
    if (confirm(_("Confirm deletion of this vendor ?"))) {
98
        window.location="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]&op=delete";
98
        window.location="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid |html %]&op=delete";
99
    }
99
    }
100
}
100
}
101
101
102
- 

Return to bug 19089