﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
105	oEditor.GetParentForm() is not a function	anonymous	Alfonso Martínez de Lizarrondo	"Receive this error when trying to submit a form.  This error started showing up in 2.4

The error console pointed to line 36 in ./js/fckeditorcode_gecko.js

if (oEditor.GetParentForm() == this )oEditor.UpdateLinkedField();

putting a try/catch block around this and alerting the value of oEditor.GetParentForm, while in the catch block, always alerts null.   Placing some sort of define check inside the conditional seems to fix the problem.  My patch:  

if (oEditor.GetParentForm && oEditor.GetParentForm() == this )oEditor.UpdateLinkedField();
"	Bug	closed	Normal	FCKeditor 2.4.1	General	FCKeditor 2.4	fixed		
