Error, probably due to php 8.1
-
I get an error when changing which plugins are to be blocked. It is related to line 3 of bspu_plugin_select.php
It says that join() wants to receive an array, but it receives strings. The problem goes away if I change
$blocked_plugins = @join('###',$_POST['block_plugin_updates']);
to
$blocked_plugins = @join(['###',$_POST['block_plugin_updates']]);
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Error, probably due to php 8.1’ is closed to new replies.