diff --git a/module/block/view/programblock.html.php b/module/block/view/programblock.html.php
index 0308d121d2..ac8589e48c 100644
--- a/module/block/view/programblock.html.php
+++ b/module/block/view/programblock.html.php
@@ -35,7 +35,7 @@
teamCount;?> |
- consumed;?> |
+ consumed . ' ' . $config->hourUnit;?> |
budget . ' ' . zget($lang->program->unitList, $project->budgetUnit);?> |
leftStories;?> |
leftTasks;?> |
diff --git a/module/block/view/storyblock.html.php b/module/block/view/storyblock.html.php
index 59c1cc13f5..91d5c467fe 100644
--- a/module/block/view/storyblock.html.php
+++ b/module/block/view/storyblock.html.php
@@ -54,7 +54,7 @@
story->priList, $story->pri, $story->pri)?> |
title?> |
- estimate?> |
+ estimate . ' ' . $config->hourUnit?> |
processStatus('story', $story);?>
diff --git a/module/block/view/taskblock.html.php b/module/block/view/taskblock.html.php
index 1f3ecfedc5..0455314f1a 100644
--- a/module/block/view/taskblock.html.php
+++ b/module/block/view/taskblock.html.php
@@ -46,7 +46,7 @@
| task->priList, $task->pri, $task->pri)?> |
createLink('task', 'view', "taskID=$task->id", '', '', $task->PRJ), $task->name)?> |
- estimate?> |
+ estimate . ' ' . $config->hourUnit;?> |
deadline, 0, 4) > 0) echo $task->deadline;?> |
processStatus('task', $task);?>
diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php
index ddca0e8fb7..c36ac5e04d 100644
--- a/module/my/view/task.html.php
+++ b/module/my/view/task.html.php
@@ -99,9 +99,9 @@
finishedBy);?> |
- estimate, 1);?> |
- consumed, 1);?> |
- left, 1);?> |
+ estimate, 1) . ' ' . $config->hourUnit;?> |
+ consumed, 1) . ' ' . $config->hourUnit;?> |
+ left, 1) . ' ' . $config->hourUnit;?> |
storyStatus) and $task->storyStatus == 'active' and $task->latestStoryVersion > $task->storyVersion and !in_array($task->status, array('cancel', 'closed')));?>
{$this->lang->my->storyChanged}") : print(" " . $this->processStatus('task', $task) . "");?>
diff --git a/module/productplan/view/linkstory.html.php b/module/productplan/view/linkstory.html.php
index 8c45bf552c..7020df7766 100644
--- a/module/productplan/view/linkstory.html.php
+++ b/module/productplan/view/linkstory.html.php
@@ -56,7 +56,7 @@
|
openedBy);?> |
assignedTo);?> |
- estimate . ' ' . $lang->story->hour;?> |
+ estimate . ' ' . $config->hourUnit;?> |
processStatus('story', $story);?>
diff --git a/module/productplan/view/view.html.php b/module/productplan/view/view.html.php
index b9e9827658..3a9b8cb18d 100644
--- a/module/productplan/view/view.html.php
+++ b/module/productplan/view/view.html.php
@@ -154,7 +154,7 @@
|
openedBy);?> |
assignedTo);?> |
- estimate . ' ' . $lang->story->hour;?> |
+ estimate . ' ' . $config->hourUnit;?> |
processStatus('story', $story);?>
diff --git a/module/release/view/linkstory.html.php b/module/release/view/linkstory.html.php
index 19bf623609..4bfaeb5fa1 100644
--- a/module/release/view/linkstory.html.php
+++ b/module/release/view/linkstory.html.php
@@ -56,7 +56,7 @@
|
openedBy);?> |
assignedTo);?> |
- estimate;?> |
+ estimate . ' ' . $config->hourUnit;?> |
processStatus('story', $story);?> |
story->stageList, $story->stage);?> |
diff --git a/module/release/view/view.html.php b/module/release/view/view.html.php
index b718b7ada9..673d23b267 100644
--- a/module/release/view/view.html.php
+++ b/module/release/view/view.html.php
@@ -115,7 +115,7 @@
?>
openedBy);?> |
- estimate;?> |
+ estimate . ' ' . $config->hourUnit;?> |
processStatus('story', $story);?>
|