The Time control module only allows for 24 hours... is there a way to by pass that limitation? i have projects that last for days - sometimes weeks & I need to be able to track the total time of the entire project. Also individual time records aren't adding up. Please help, thanks.
Hi hobejeans,
edit config/Modules/OSSTimeControl.php and set $DISALLOW_LONGER_THAN_24_HOURS to false
class OSSTimeControl
{
/** Right calendar panel visible by default. true - show right panel, false - hide right panel */
public static $SHOW_RIGHT_PANEL = true;
/** Block creating record if duration exceeds 24 hours */
public static $DISALLOW_LONGER_THAN_24_HOURS = false;
}
Most helpful comment
Hi hobejeans,
edit
config/Modules/OSSTimeControl.phpand set $DISALLOW_LONGER_THAN_24_HOURS to false