Author Topic: Task state shows 'work in progress' when timeslot is paused  (Read 1751 times)

Murz

  • Full Member
  • ***
  • Posts: 147
    • View Profile
Task state shows 'work in progress' when timeslot is paused
« on: December 16, 2009, 11:34:09 am »
If user set timeslot to pause, in task page I see always 'work in progress'.
For fix this issue we can change the line 43 in application/views/timeslot/object_timeslots.php
from
Code: [Select]
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' lang('work in progress') . '</b>') :.to
Code: [Select]
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' . ($timeslot->isPaused()?lang('work paused'):lang('work in progress')) . '</b>') :.
« Last Edit: December 17, 2009, 03:50:02 am by Murz »