#2447 - Bug in editing comment

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2.2@54205 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-05-08 23:12:34 +00:00
parent c063363b23
commit fb6bab202b

View File

@ -273,7 +273,7 @@ JS;
// If the fieldset is passed, use it, else use the formfields returned // If the fieldset is passed, use it, else use the formfields returned
// from the object via a string method call. // from the object via a string method call.
if(is_a($this->detailFormFields,"Fieldset")){ if(is_a($this->detailFormFields,"Fieldset")){
$detailFields = $this->detailFormFields; $detailFields = clone $this->detailFormFields;
} else if( isset( $childData ) && is_string($this->detailFormFields)){ } else if( isset( $childData ) && is_string($this->detailFormFields)){
$functioncall = $this->detailFormFields; $functioncall = $this->detailFormFields;
if($childData->hasMethod($functioncall)){ if($childData->hasMethod($functioncall)){