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.
- The topic ‘Reporting bug fix’ is closed to new replies.