• Credits to @webliberty, thanks to him I could get this to work for phpBB 3.2 also.

    Actually, the correct changes are (couldn’t add a comment for the thread on phpBB 3.1 anymore):

    Line 49, change
    $EXCLUDED_FORUM = “AND “;
    to
    $EXCLUDED_FORUM = “”;

    Line 62, change
    $sql_query = “SELECT * FROM $lnx_PRT_options[prt_phpbb_tt] WHERE TOPIC_APPROVED = 1 $EXCLUDED_FORUM $EXCLUDED_FORUM ORDER BY”;
    to
    $sql_query = “SELECT * FROM $lnx_PRT_options[prt_phpbb_tt] WHERE $EXCLUDED_FORUM ORDER BY”;

    This will make sure that excluded forums are processed and excluded from the listing.

  • The topic ‘Compatibility with phpBB 3.2’ is closed to new replies.