Add 9 hour duration

This commit is contained in:
Nathan Gray 2012-12-04 22:41:10 +00:00
parent e57e2c85be
commit a0965bfd9f

View File

@ -55,7 +55,7 @@ class calendar_uiforms extends calendar_ui
{
parent::__construct(true); // call the parent's constructor
for ($n=15; $n <= 16*60; $n+=($n < 60 ? 15 : ($n < 240 ? 30 : ($n < 480 ? 60 : 120))))
for ($n=15; $n <= 16*60; $n+=($n < 60 ? 15 : ($n < 240 ? 30 : ($n < 600 ? 60 : 120))))
{
$this->durations[$n*60] = sprintf('%d:%02d',$n/60,$n%60);
}