BUG Deep cloning for DateTimeField

This commit is contained in:
Ingo Schommer 2012-11-30 10:59:26 +01:00
parent b65180a7f6
commit 26141718ec

View File

@ -279,6 +279,11 @@ class DatetimeField extends FormField {
return $field;
}
public function __clone() {
$this->dateField = clone $this->dateField;
$this->timeField = clone $this->timeField;
}
}
/**