* finish task #3973.

This commit is contained in:
wangyidong
2018-05-10 10:00:05 +08:00
parent c3e3d3e974
commit aede4506ce
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
<form class='load-indicator main-form' method='post' target='hiddenwin'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->comment;?></th>
<th class='w-40px'><?php echo $lang->comment;?></th>
<td><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
</tr>
<tr>
+1 -1
View File
@@ -216,7 +216,7 @@
echo "<div class='divider'></div>";
if($product->status != 'closed')
{
common::printIcon('product', 'close', "productID=$product->id", $product, 'button', '', '', 'iframe text-danger', true);
common::printIcon('product', 'close', "productID=$product->id", $product, 'button', '', '', 'iframe', true);
echo "<div class='divider'></div>";
}
+1 -1
View File
@@ -26,7 +26,7 @@
<table class='table table-form'>
<tbody>
<tr>
<th><?php echo $lang->comment;?></th>
<th class='w-50px'><?php echo $lang->comment;?></th>
<td><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
</tr>
<tr>
+2 -2
View File
@@ -27,7 +27,7 @@
<table class='table table-form'>
<tbody>
<tr>
<th><?php echo $lang->project->dateRange;?></th>
<th class='w-80px'><?php echo $lang->project->dateRange;?></th>
<td colspan='2'>
<div class='input-group'>
<?php echo html::input('begin', $project->begin, "class='form-control form-date' onchange='computeWorkDays()' placeholder='" . $lang->project->begin . "'");?>
@@ -43,7 +43,7 @@
</div>
</div>
</td>
<td></td>
<td class='w-100px'></td>
</tr>
<tr>
<th><?php echo $lang->project->days;?></th>
+1 -1
View File
@@ -26,7 +26,7 @@
<table class='table table-form'>
<tbody>
<tr>
<th><?php echo $lang->comment;?></th>
<th class='w-40px'><?php echo $lang->comment;?></th>
<td><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
</tr>
<tr>
+1 -1
View File
@@ -25,7 +25,7 @@
<form class='load-indicator main-form' method='post' target='hiddenwin'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->comment;?></th>
<th class='w-50px'><?php echo $lang->comment;?></th>
<td><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
</tr>
<tr>
+1 -1
View File
@@ -2326,7 +2326,7 @@ class taskModel extends model
else if ($assignedToText == $account) $btnTextClass = 'text-red';
$btnClass = $assignedToText == 'closed' ? ' disabled' : '';
echo html::a(helper::createLink('task', 'assignTo', "projectID=$task->project&taskID=$task->id"), "<i class='icon icon-hand-right'></i> <span class='{$btnTextClass}'>{$assignedToText}</span>", '', "class='iframe btn btn-icon-left{$btnClass}'");
echo html::a(helper::createLink('task', 'assignTo', "projectID=$task->project&taskID=$task->id", '', true), "<i class='icon icon-hand-right'></i> <span class='{$btnTextClass}'>{$assignedToText}</span>", '', "class='iframe btn btn-icon-left{$btnClass}'");
break;
case 'assignedDate':
echo substr($task->assignedDate, 5, 11);