PHP 7.3 Incompatible
-
Hi, with PHP 7.0 all things work fine.
Not so with PHP 7.3 it totally breaks the plugin backend.In the logs I find the message:
AH01071: Got error ‘PHP message: PHP Fatal error: Uncaught Error: [] operator not supported for strings in …/wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php:283
Solution:
============
Please change:
$links[] = '<a href="' . $href . '">Saved Tabs</a>';
to:
array_push($links, '<a href="' . $href . '">Saved Tabs</a>');
That should fix the issue.
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘PHP 7.3 Incompatible’ is closed to new replies.