
Originally Posted by
marton_1
I get this warning message, do you also and did you fix it?
Code:
PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ot_paymentmodulefee has a deprecated constructor in C:\xampp73a\htdocs\zencart157a\catalog\includes\modules\order_total\ot_paymentmodulefee.php on line 11.
That means this:
Code:
class ot_paymentmodulefee {
function ot_paymentmodulefee()
..
needs to change to this:
Code:
class ot_paymentmodulefee {
function __construct()
..
There are lots of other PHP code changes to incorporate as well when upgrading from older syntaxes.