mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
#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:
parent
c063363b23
commit
fb6bab202b
@ -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)){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user