From 58bbdb61298c4f6e699e308ba227f9da45bd94b1 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 Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Jonathan Druart (cherry picked from commit 438a3dea0c8ef1a5adcec58d8b97474d14ccca9b) Signed-off-by: Fridolin Somers --- acqui/basket.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/acqui/basket.pl b/acqui/basket.pl index 7b91eeedbb..d51ba07980 100755 --- a/acqui/basket.pl +++ b/acqui/basket.pl @@ -214,6 +214,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.39.5