Title: Error in debug mod
Last modified: August 21, 2016

---

# Error in debug mod

 *  Resolved [madvic](https://wordpress.org/support/users/madvic/)
 * (@madvic)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/error-in-debug-mod/)
 * Hello,
 * When I save changes in debug mod :
    `Notice: Undefined index: use_wp_logo in 
   D:\DEV\wamp\www\wordpress380\wp-content\plugins\private-only\admin\settings-admin.
   php on line 73` Bye
 * [http://wordpress.org/plugins/private-only/](http://wordpress.org/plugins/private-only/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [madvic](https://wordpress.org/support/users/madvic/)
 * (@madvic)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/error-in-debug-mod/#post-4530489)
 * 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](https://wordpress.org/support/users/katemag/)
 * (@katemag)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/error-in-debug-mod/#post-4530749)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/private-only_f8f8f8.svg)
 * [Private Only](https://wordpress.org/plugins/private-only/)
 * [Support Threads](https://wordpress.org/support/plugin/private-only/)
 * [Active Topics](https://wordpress.org/support/plugin/private-only/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/private-only/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/private-only/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Kate Mag](https://wordpress.org/support/users/katemag/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/error-in-debug-mod/#post-4530749)
 * Status: resolved