Skip to content

Commit

Permalink
HTML decoding for bank transfer details
Browse files Browse the repository at this point in the history
  • Loading branch information
abantecart committed Apr 25, 2014
1 parent 7278969 commit 3d62a8c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,7 +29,7 @@ public function main() {
$this->view->assign('text_payment', $this->language->get('text_payment'));

$this->view->batchAssign( $this->language->getASet() );
$this->view->assign('instructions', $this->config->get('default_banktransfer_instructions'));
$this->view->assign('instructions', html_entity_decode($this->config->get('default_banktransfer_instructions')));
$this->view->assign('continue', $this->html->getSecureURL('checkout/success'));

if ($this->request->get['rt'] != 'checkout/guest_step_3') {
Expand Down

0 comments on commit 3d62a8c

Please sign in to comment.