Coming 2.7.8 logs

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: Coming 2.7.8 logs

Coming 2.7.8 logs

by axew3 » Sat Dec 16, 2023 8:29 pm

* 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;
      }*/
   }

Top