Skip to content
Snippets Groups Projects
Commit 9287c269 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed indentation.

parent d0f3a6a9
No related merge requests found
<label class="displayBlock" for="email_to"><?=$this->transEsc('To')?>:</label>
<? $toValidations = ($this->maxRecipients == 1) ? array('required'=>'This field is required', 'email'=>'Email address is invalid') : array('required'=>'This field is required')?>
<input id="email_to" type="text" name="to" value="<?=isset($this->to) ? $this->to : ''?>" size="40" class="mainFocus <?=$this->jqueryValidation($toValidations)?>"/>
<? if ($this->maxRecipients != 1): ?>
<br />
<?=$this->transEsc('email_multiple_recipients_note')?>
<? if ($this->maxRecipients > 1): ?>
<?=$this->transEsc('email_maximum_recipients_note', array('%%max%%' => $this->maxRecipients))?>
<? endif; ?>
<? if ($this->maxRecipients != 1): ?>
<br />
<?=$this->transEsc('email_multiple_recipients_note')?>
<? if ($this->maxRecipients > 1): ?>
<?=$this->transEsc('email_maximum_recipients_note', array('%%max%%' => $this->maxRecipients))?>
<? endif; ?>
<? endif; ?>
<? if (!$this->disableFrom): ?>
<label class="displayBlock" for="email_from"><?=$this->transEsc('From')?>:</label>
<input id="email_from" type="text" name="from" value="<?=isset($this->from) ? $this->from : ''?>" size="40" class="<?=$this->jqueryValidation(array('required'=>'This field is required', 'email'=>'Email address is invalid'))?>"/>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment