Feng Forum

Support => Older versions => : Murz December 16, 2009, 11:34:09 AM

: Task state shows 'work in progress' when timeslot is paused
: Murz 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
:
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' lang('work in progress') . '</b>') :.to
:
&nbsp;-&nbsp;<?php echo $timeslot->isOpen() ? ('<b>' . ($timeslot->isPaused()?lang('work paused'):lang('work in progress')) . '</b>') :.