diff --git a/app/code/core/Mage/Payment/Block/Info.php b/app/code/core/Mage/Payment/Block/Info.php index 62b718d44d1..fdf45432980 100644 --- a/app/code/core/Mage/Payment/Block/Info.php +++ b/app/code/core/Mage/Payment/Block/Info.php @@ -74,7 +74,7 @@ public function getMethod() */ public function toPdf() { - $this->setTemplate('payment/info/default.phtml'); + $this->setTemplate('payment/info/pdf/default.phtml'); return $this->toHtml(); } diff --git a/app/code/core/Mage/Payment/Block/Info/Checkmo.php b/app/code/core/Mage/Payment/Block/Info/Checkmo.php index 0b9f090bb3b..2f46945d958 100644 --- a/app/code/core/Mage/Payment/Block/Info/Checkmo.php +++ b/app/code/core/Mage/Payment/Block/Info/Checkmo.php @@ -92,7 +92,7 @@ protected function _convertAdditionalData() */ public function toPdf() { - $this->setTemplate('payment/info/checkmo.phtml'); + $this->setTemplate('payment/info/pdf/checkmo.phtml'); return $this->toHtml(); } } diff --git a/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php b/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php index 084aea409e8..ac04d4f4933 100644 --- a/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php +++ b/app/code/core/Mage/Payment/Block/Info/Purchaseorder.php @@ -38,7 +38,7 @@ protected function _construct() */ public function toPdf() { - $this->setTemplate('payment/info/purchaseorder.phtml'); + $this->setTemplate('payment/info/pdf/purchaseorder.phtml'); return $this->toHtml(); } }