wpmudev / membership-2

GNU General Public License v2.0
48 stars 58 forks source link

PHP Warning: Cannot modify header information - headers already sent in /membership-pro/app/controller/class-ms-controller-plugin.php on line 99 #4

Open ArnoutPullen opened 4 years ago

ArnoutPullen commented 4 years ago

Membership Pro Version: 1.1.5 WordPress Version: 5.2.3 PHP Version: 7.3

PHP Warning:

PHP Warning:  Cannot modify header information - headers already sent in /public_html/wp-content/plugins/membership-pro/app/controller/class-ms-controller-plugin.php on line 99

Temporary fix, replace line 99 with the code below:

add_action('send_headers', function(){
    header( 'P3P:CP="NOI"' );
});