﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
575	"edit_inline don't save child data when a ""blank=True"" field is not set"	pylorca	nobody	"when I try to insert or modify throught the admin interface, child data is not saved when there is a ""blank=True"" field and it's not set.

example:

model:
{{{
class Person(meta.Model):
    name = meta.CharField(maxlength=30)
    lastName = meta.CharField(maxlength=30)

class Phone:
    person = meta.ForeignKey(Person, edit_inline=meta.STACKED, num_in_admin=2)
    number = meta.CharField(maxlength=30, core=True)
    description = meta.CharField(maxlength=100, blank=True, core=True)
}}}

if I set a Phone number and I don't set description, this don't throw any error, but the Phone data is not saved, but this would be saved if I set the description too
"	defect	closed	contrib.admin	dev	major	fixed	nfa-fixed		Accepted	0	0	0	0	0	0
