Skip to content

Commit

Permalink
Added optional suffix text to Mass Mail Form page (#12078)
Browse files Browse the repository at this point in the history
  • Loading branch information
pe7er authored and rdeutz committed Oct 1, 2016
1 parent 13f3027 commit 57af617
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@
<fieldset class="adminform">
<div class="control-group">
<div class="control-label"><?php echo $this->form->getLabel('subject'); ?></div>
<div class="controls"><?php echo $this->form->getInput('subject'); ?></div>
<div class="controls"><?php echo JComponentHelper::getParams('com_users')->get('mailSubjectPrefix'); ?>
<?php echo $this->form->getInput('subject'); ?></div>
</div>
<div class="control-group">
<div class="control-label"><?php echo $this->form->getLabel('message'); ?></div>
<div class="controls"><?php echo $this->form->getInput('message'); ?></div>
<div class="controls"><?php echo $this->form->getInput('message'); ?><br>
<?php echo JComponentHelper::getParams('com_users')->get('mailBodySuffix'); ?></div>
</div>
</fieldset>
<input type="hidden" name="task" value="" />
Expand Down

0 comments on commit 57af617

Please sign in to comment.