phpBB WordPress integration extension v2 - fixes

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: phpBB WordPress integration extension v2 - fixes

phpBB WordPress integration extension v2 - fixes

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:

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.

Top