- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2016
07:12 PM
01-20-2016
07:12 PM
SUPEE-7405 on Magento 1.7.0.0
When installing the SUPEE-7405 on magento 1.7.0.0 the patch is trying to remove the comment on these lines:
-/* @var $_helper Mage_Authorizenet_Helper_Data */ -$_helper = $this->helper('authorizenet'); +/* @var $_helper Mage_Authorizenet_Helper_Admin */ +$_helper = $this->helper('authorizenet/admin');
However the comment
@var $_helper Mage_Authorizenet_Helper_Data
was not added until magento 1.7.0.1 and not in 1.7.0.0
I have got around the issue by added the comment to the file and then running the patch.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2016
11:51 AM
01-21-2016
11:51 AM
Re: SUPEE-7405 on Magento 1.7.0.0
Hi @rob3000, were you able to get this working?
--
Developer Relations, Adobe Experience Cloud
Problem solved? Click Accept as Solution!
Still stuck? Check out our documentation: https://magento.com/resources/technical
Developer Relations, Adobe Experience Cloud
Problem solved? Click Accept as Solution!
Still stuck? Check out our documentation: https://magento.com/resources/technical
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2016
03:52 PM
01-21-2016
03:52 PM
Re: SUPEE-7405 on Magento 1.7.0.0
I needed to add
/* @var $_helper Mage_Authorizenet_Helper_Data */
above the helper declaration comment to the file and then ran the patch again and it worked.