DirectorObjectForm: fix legacy range field

This commit is contained in:
Thomas Gelf 2016-09-05 18:52:22 +00:00
parent 83031c1349
commit 1144b5d55f
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ abstract class DirectorObjectForm extends QuickForm
{ {
$this->addElement('text', 'range_' . $key, array( $this->addElement('text', 'range_' . $key, array(
'label' => 'ranges.' . $key, 'label' => 'ranges.' . $key,
'value' => $range->timeperiod_value 'value' => $range->range_value
)); ));
} }