NinjasCL-archive / prestashop-webpay

[UNMAINTAINED] A Prestashop Payment Module for Transbank's WebPay
GNU General Public License v3.0
19 stars 5 forks source link

Fix Fatal error: Call to undefined method Context::shop() #10

Closed clsource closed 10 years ago

clsource commented 10 years ago

Fix Error Related to Context Shop ID

This error is caused in this line

$activeShopID = (int) Context::getContext()->shop()->id;

Must solve removing parenthesis in shop like this

$activeShopID = (int) Context::getContext()->shop->id;