Il bug si presenta in tutte le versione phpBB 2.0.* ed è altamente consigliato applicare le seguenti modifiche.
Il pacchetto phpBB 2.0.8 che trovate nei download del sito è già con la patch inserita.
Per fixare il problema, apri il file privmsg.php e:
CERCA
Codice: Seleziona tutto
$pm_sql_user .= "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
SOSTITUISCI CON:
Codice: Seleziona tutto
$pm_sql_user = "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
The difference between the two lines is the deleted dot after $pm_sql_user.
Save and if necessary upload the changed file to your webserver replacing your existing version.