Removed unnecessary context switching

This commit is contained in:
Rich Morgan 2014-12-17 13:06:37 -05:00
parent b40d1a60f3
commit 78e3ab0d2c
1 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,8 @@
* @license Copyright 2011-2014 BitPay Inc., MIT License
* @see https://github.com/bitpay/magento-plugin/blob/master/LICENSE
*/
?>
<p><strong><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?></strong></p>
<?php echo $this->getChildHtml()?>
echo '<p><strong>' . $this->escapeHtml($this->getMethod()->getTitle()) . '</strong></p>';
echo $this->getChildHtml();
?>