- Removed cart icon from ViewCart macro.

- Updated WebGUI::Shop::PayDriver::processTransaction() to accept a 
   transaction as a param.
This commit is contained in:
JT Smith 2008-10-07 18:04:38 +00:00
parent febf192fff
commit 2a66f149e8
2 changed files with 5 additions and 2 deletions

View file

@ -40,12 +40,12 @@ sub process {
return $url;
}
elsif ($text) {
# us text specified
# use text specified
}
else {
$text = WebGUI::International->new($session,"Shop")->get("view cart");
}
return '<a href="'.$url.'"><img src="'.$session->url->extras('/macro/ViewCart/cart.gif').'" alt="'.$text.'" style="border: 0px;vertical-align: middle;" /></a> <a href="'.$url.'">'.$text.'</a>';
return '<a href="'.$url.'">'.$text.'</a>';
}
1;