2.8.0 release logs and 2.7.9 bugs reports

User avatar
axew3
w3all User
w3all User
Posts: 2713
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

2.8.0 release logs and 2.7.9 bugs reports

Post by axew3 »

On 2.8.0:

All about profile fields in phpBB has been coded to be shorter and to fit any phpBB possible configuration. It will not be anymore a problem, if there are custom or modified phpBB profile fields, queries about the profile fields update (that for what concern the default WP user's profile fields is only about the user's site URL) will works fine into any phpBB, also custom, configuration.
The code as is can be easily modified by any Php developer, to fit updates of any profile field between phpBB and any WP plugin (but as said at moment and for what concerns WP default, it only consider the profile site URL field).

All queries about user's updates have been reviewed and fixed.

Remove unwanted pieces of code and fix some little discrepancy.

Please report any possible bug, 2.8.0 is on the way to be released very soon!
User avatar
ale
User w
User w
Posts: 10
Joined: Sun Jul 22, 2018 9:43 pm

Re: 2.8.0 release logs and 2.7.9 bugs reports

Post by ale »

I noted an error that i have been not able to reproduce after anymore thrown calling the logout function in conjunction with the polugin All In One WP Security, not coming out anymore after the All In One WP Security plugin has been updated or at least it do not occur to me anymore:
anyway i think for compatibility with any kind of configuration with all external plugins,
into function

Code: Select all

private static function w3all_wp_logout($redirect = ''){
file /wp-content/plugins/wp-w3all-phpbb-integration/class.wp.w3all-phpbb.php
would be better to replace this line of code:

Code: Select all

wp_logout();
with this instead:

Code: Select all

       clean_user_cache(get_current_user_id());
       wp_destroy_current_session();
       wp_clear_auth_cookie();
       wp_set_current_user(0);
Post Reply