CC-5660: Unable to create shows with a rebroadcast
Used wrong formating for minutes
This commit is contained in:
parent
11284d0d41
commit
2cdad4932a
|
@ -167,7 +167,7 @@ class Application_Form_AddShowWhen extends Zend_Form_SubForm
|
||||||
* rebroadcast instances
|
* rebroadcast instances
|
||||||
*/
|
*/
|
||||||
$hours = $duration->format("%h");
|
$hours = $duration->format("%h");
|
||||||
$minutes = $duration->format("%m");
|
$minutes = $duration->format("%i");
|
||||||
|
|
||||||
/* Check if show is overlapping
|
/* Check if show is overlapping
|
||||||
* We will only do this check if the show is valid
|
* We will only do this check if the show is valid
|
||||||
|
|
Loading…
Reference in New Issue