Fixed both of these issues. Fixed issue with connection URLs in "Add Show" and in "Stream Prefs" where the text was unstyled. Fixed issue with long connection URLS causing display problems in "Add Show" and in "Stream Prefs". Now a scrollbar will appear if the connection URL is too long. Fixed bug in Stream Prefs where zooming out caused the page to be formatted differently. Fixed bug in Stream Prefs where the labels "Master Source Connection URL" and "Show Source Connection URL" wrapped on multiple lines. Fixed help text for Add Show -> Live Stream authication settings, the instructions were wrong and there were misspelled words.
66 lines
3.3 KiB
PHTML
66 lines
3.3 KiB
PHTML
<fieldset>
|
|
<dl>
|
|
<dt id="add_show_start_date-label">
|
|
<label for="add_show_start_date" class="required">
|
|
<?php echo $this->element->getElement('add_show_start_date')->getLabel()?>
|
|
</label>
|
|
</dt>
|
|
<dd>
|
|
<?php echo $this->element->getElement('add_show_start_date') ?>
|
|
<?php echo $this->element->getElement('add_show_start_time') ?>
|
|
</dd>
|
|
<?php if($this->element->getElement('add_show_start_date')->hasErrors() || $this->element->getElement('add_show_start_time')->hasErrors()){ ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('add_show_start_date')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
<?php foreach($this->element->getElement('add_show_start_time')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php } ?>
|
|
<dt id="add_show_end_date_no_repeat-label">
|
|
<label for="add_show_end_date_no_repeat" class="required">
|
|
<?php echo $this->element->getElement('add_show_end_date_no_repeat')->getLabel()?>
|
|
</label>
|
|
</dt>
|
|
|
|
<dd>
|
|
<?php echo $this->element->getElement('add_show_end_date_no_repeat') ?>
|
|
<?php echo $this->element->getElement('add_show_end_time') ?>
|
|
</dd>
|
|
<?php if($this->element->getElement('add_show_end_date_no_repeat')->hasErrors() || $this->element->getElement('add_show_end_time')->hasErrors()){ ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('add_show_end_date_no_repeat')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
<?php foreach($this->element->getElement('add_show_end_time')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php } ?>
|
|
<dt id="add_show_duration-label">
|
|
<label for="add_show_duration" class="optional">
|
|
<?php echo $this->element->getElement('add_show_duration')->getLabel() ?>
|
|
</label>
|
|
</dt>
|
|
<dd id="add_show_duration-element">
|
|
<?php echo $this->element->getElement('add_show_duration') ?>
|
|
<img id="icon-loader-small" src="/css/images/loader-small.gif" style="vertical-align:middle; display:none;"/>
|
|
</dd>
|
|
<?php if($this->element->getElement('add_show_duration')->hasErrors()){ ?>
|
|
<ul class='errors'>
|
|
<?php foreach($this->element->getElement('add_show_duration')->getMessages() as $error): ?>
|
|
<li><?php echo $error; ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php } ?>
|
|
<dt id="add_show_repeats-label">
|
|
<label><?php echo $this->element->getElement('add_show_repeats')->getLabel() ?></label>
|
|
</dt>
|
|
<dd id="add_show_repeats-element">
|
|
<?php echo $this->element->getElement('add_show_repeats') ?>
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|
|
|