Page 1 of 1

phpBB WordPress integration extension v2 - fixes

Posted: Tue Feb 06, 2024 6:41 pm
by axew3
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:

Code: Select all

if(!empty($wdp))
into this:

Code: Select all

if(!empty($mode) && !empty($wdp))
It is not required to do anything else to update/fix the extension.