From c6a268a3437a7c66a1b496ac2e54b6d2a943a182 Mon Sep 17 00:00:00 2001 From: Henri-Damien LAURENT Date: Thu, 20 Mar 2008 11:36:53 +0100 Subject: [PATCH] bug fixing : when closing a basket, supplier was searched by name, not by id. Signed-off-by: Joshua Ferraro --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl index 173b48ccc3..76bd507534 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tmpl @@ -7,7 +7,7 @@ function confirm_close() { var is_confirmed = confirm('Are you sure you want to close this basket?'); if (is_confirmed) { - window.location = "/cgi-bin/koha/acqui/booksellers.pl?op=close&basketno=&supplier="; + window.location = "/cgi-bin/koha/acqui/booksellers.pl?op=close&basketno=&supplierid="; } } //]]> -- 2.39.5