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:
PHP Fatal error: Uncaught Error: [] operator not supported for strings in …/wp-content/plugins/servebolt-optimizer/admin/admin-interface.php:193
Please change:
$links[] = sprintf('<a href="%s">%s</a>', admin_url( 'options-general.php?page=servebolt-wp' ), sb__('Settings'));
to:
array_push($links, sprintf('<a href="%s">%s</a>', admin_url( 'options-general.php?page=servebolt-wp' ), sb__('Settings')));
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.