Title: Reporting bug fix
Last modified: August 22, 2016

---

# Reporting bug fix

 *  [mohammad-mursaleen](https://wordpress.org/support/users/mohammad-mursaleen/)
 * (@mohammad-mursaleen)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reporting-bug-fix/)
 * I was getting “_undefined index ‘family\_head’…_” error and discovered some missing
   check in your plugin; you must replace;
 * `update_post_meta($post_id,'family_head',$_POST['family_head']);`
 * in “includes/custom-meta-box.php” with;
 *     ```
       if(isset($_POST['family_head']))
               update_post_meta($post_id,'family_head',$_POST['family_head']);
       ```
   
 * to get rid of such error.
 * [https://wordpress.org/plugins/family-tree/](https://wordpress.org/plugins/family-tree/)

The topic ‘Reporting bug fix’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/family-tree.svg)
 * [WP Family Tree](https://wordpress.org/plugins/family-tree/)
 * [Support Threads](https://wordpress.org/support/plugin/family-tree/)
 * [Active Topics](https://wordpress.org/support/plugin/family-tree/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/family-tree/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/family-tree/reviews/)

## Tags

 * [bug fix](https://wordpress.org/support/topic-tag/bug-fix/)

 * 0 replies
 * 1 participant
 * Last reply from: [mohammad-mursaleen](https://wordpress.org/support/users/mohammad-mursaleen/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/reporting-bug-fix/)
 * Status: not resolved