by axew3 » Tue Feb 06, 2024 6:41 pm
The phpBB WordPress integration extension
v2 will be soon patched (and you should maybe manually patch it in the while) to correctly execute a specified part of the code (db query) only when required.
To do this, open the phpbbwordpress extension file
/ext/w3all/phpbbwordpress/common/functions_common.php
change this code:
into this:
It is not required to do anything else to update/fix the extension.
The phpBB WordPress integration extension [size=120][b]v2[/b][/size] will be soon patched (and you should maybe manually patch it in the while) to correctly execute a specified part of the code (db query) only when required.
To do this, open the phpbbwordpress extension file
[i]/ext/w3all/phpbbwordpress/common/[b]functions_common.php[/b][/i]
change this code:
[code]if(!empty($wdp))[/code]
into this:
[code]if(!empty($mode) && !empty($wdp))[/code]
It is not required to do anything else to update/fix the extension.