diff --git a/module/bug/view/edit.html.php b/module/bug/view/edit.html.php index 798ea70e89..4d377a4b99 100644 --- a/module/bug/view/edit.html.php +++ b/module/bug/view/edit.html.php @@ -34,9 +34,6 @@ js::set('oldResolvedBuild' , $bug->resolvedBuild); createLink('bug', 'view', "bugID=$bug->id"), $bug->title, '', "class='bug-title' title='$bug->title'");?> arrow . ' ' . $lang->bug->edit;?> -
- save);?> -
diff --git a/module/task/control.php b/module/task/control.php index 6d195d4d31..55a48f4395 100644 --- a/module/task/control.php +++ b/module/task/control.php @@ -1145,7 +1145,7 @@ class task extends control public function ajaxGetProjectTasks($projectID, $taskID = 0) { $tasks = $this->task->getProjectTaskPairs((int)$projectID); - die(html::select('task', empty($tasks) ? array('' => '') : $tasks, $taskID)); + die(html::select('task', empty($tasks) ? array('' => '') : $tasks, $taskID, "class='form-control'")); } /**