Coming 2.7.8 logs

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

Coming 2.7.8 logs

Post by axew3 »

* Fix: ajax error coming up in various circumstances (ex memberpress checkout). A completely not required instruction has been removed:
file
/wp-content/plugins/wp-w3all-phpbb-integration/wp_w3all.php

Code: Select all

   function wp_w3all_up_wp_prof_on_phpbb($user_id, $old_user_data) {

     $phpBB_user_up_prof_on_wp_prof_up = WP_w3all_phpbb::phpbb_update_profile($user_id, $old_user_data);

      if($phpBB_user_up_prof_on_wp_prof_up === true){
        temp_wp_w3_error_on_update();
        exit;
      }
   }
REMOVE

Code: Select all

      if($phpBB_user_up_prof_on_wp_prof_up === true){
        temp_wp_w3_error_on_update();
        exit;
so:

Code: Select all

   function wp_w3all_up_wp_prof_on_phpbb($user_id, $old_user_data) {

     $phpBB_user_up_prof_on_wp_prof_up = WP_w3all_phpbb::phpbb_update_profile($user_id, $old_user_data);

      /*if($phpBB_user_up_prof_on_wp_prof_up === true){
        temp_wp_w3_error_on_update();
        exit;
      }*/
   }