From b4817ecf9d820d94d949d8a28a912dffdbb2894b Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Sun, 27 Aug 2017 23:00:15 +0000 Subject: [PATCH] Bug 19180: Add vendor name to breadcrumbs when closing an order To test: 1) Go to Acquisitions 2) Find a vendor and a basket 3) Click 'Close basket' button 4) Notice that on confirmation page, breadcrumbs are missing vendor 5) Apply patch and refresh page 6) Vendor name should now show 7) Confirm link to vendor works as expected Sponsored-by: Catalyst IT --- acqui/basket.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/acqui/basket.pl b/acqui/basket.pl index 7a039d4..5194892 100755 --- a/acqui/basket.pl +++ b/acqui/basket.pl @@ -220,6 +220,7 @@ if ( $op eq 'delete_confirm' ) { $template->param( confirm_close => "1", booksellerid => $booksellerid, + name => $bookseller->name, basketno => $basket->{'basketno'}, basketname => $basket->{'basketname'}, basketgroupname => $basket->{'basketname'}, -- 2.1.4