﻿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
2666	redefined save methods not always called when using edit_inline	GoClick	jkocherhans	"Given something loseley like this

{{{
#!python
class a(models.Model):
  def save(self):
    super(a, self).save()

class b(models.Model):
  ta = models.ForeignKey(a, edit_inline=models.TABULAR, num_in_admin=5)
  def save(self):
    super(b, self).save()
}}}

when I edit an a in the admin and press save the save method is called. However if I edit the b objects inline the save method for a is not called even if there were changes made to the a object aswell, the object seems to be getting saved with the superclass' save method not the new redefined one."	defect	closed	contrib.admin	newforms-admin	major	fixed	nfa-fixed		Fixed on a branch	0	0	0	0	0	0
