* change 'record' to 'recordEstimate'.

This commit is contained in:
zhujinyong
2013-03-02 14:04:28 +00:00
parent abe4779cf0
commit 85987eee80
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -431,13 +431,13 @@ class task extends control
* @access public
* @return void
*/
public function record($taskID)
public function recordEstimate($taskID)
{
$this->commonAction($taskID);
if(!empty($_POST))
{
$this->task->record($taskID);
$this->task->recordEstimate($taskID);
if(isonlybody()) die(js::reload('parent.parent'));
die(js::locate($this->createLink('task', 'view', "taskID=$taskID"), 'parent'));
}