Rename helper method

This commit is contained in:
Frederic Guillot 2016-01-31 12:05:11 -05:00
parent 3eec6b72e6
commit e81fa0ebd2
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ class Task extends Base
return $html;
}
public function selectTimeEstimate(array $values, array $errors = array(), array $attributes = array())
public function selectTimeEstimated(array $values, array $errors = array(), array $attributes = array())
{
$attributes = array_merge(array('tabindex="9"'), $attributes);

View File

@ -53,7 +53,7 @@
<?= $this->task->selectColumn($columns_list, $values, $errors) ?>
<?= $this->task->selectPriority($project, $values) ?>
<?= $this->task->selectScore($values, $errors) ?>
<?= $this->task->selectTimeEstimate($values, $errors) ?>
<?= $this->task->selectTimeEstimated($values, $errors) ?>
<?= $this->task->selectDueDate($values, $errors) ?>
</div>