Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter madvic

    (@madvic)

    The correction line 72:

    Before :

    foreach ( $settings_arr as $key => $value ) :
    	$settings[$key] = $val[$key] = $_POST[$data[$key]];
    endforeach;

    After :

    foreach ( $settings_arr as $key => $value ) :
    	if(!empty($_POST[$key]))
    		$settings[$key] = $val[$key] = $_POST[$data[$key]];
    endforeach;

    Plugin Author Kate Mag

    (@katemag)

    Hello, please download version 3.5.1. This version fix this problem

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error in debug mod’ is closed to new replies.