Skip to content

Commit

Permalink
Fixing PHP shorttags
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-d committed Dec 14, 2015
1 parent 503db1f commit d66c77b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -430,8 +430,8 @@ function clearCoords()
<form method="post" action="">
<input type="hidden" name="option" value="com_templates" />
<input type="hidden" name="task" value="template.delete" />
<input type="hidden" name="id" value="<? echo $input->getInt('id'); ?>" />
<input type="hidden" name="file" value="<? echo $this->file; ?>" />
<input type="hidden" name="id" value="<?php echo $input->getInt('id'); ?>" />
<input type="hidden" name="file" value="<?php echo $this->file; ?>" />
<?php echo JHtml::_('form.token'); ?>
<a href="#" class="btn" data-dismiss="modal"><?php echo JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></a>
<button type="submit" class="btn btn-danger"><?php echo JText::_('COM_TEMPLATES_BUTTON_DELETE');?></button>
Expand Down
Expand Up @@ -144,8 +144,8 @@ function clearCoords()
<form method="post" action="">
<input type="hidden" name="option" value="com_templates" />
<input type="hidden" name="task" value="template.delete" />
<input type="hidden" name="id" value="<? echo $input->getInt('id'); ?>" />
<input type="hidden" name="file" value="<? echo $this->file; ?>" />
<input type="hidden" name="id" value="<?php echo $input->getInt('id'); ?>" />
<input type="hidden" name="file" value="<?php echo $this->file; ?>" />
<?php echo JHtml::_('form.token'); ?>
<a href="#" class="btn" data-dismiss="modal"><?php echo JText::_('COM_TEMPLATES_TEMPLATE_CLOSE'); ?></a>
<button type="submit"><?php echo JText::_('COM_TEMPLATES_BUTTON_DELETE');?></button>
Expand Down

1 comment on commit d66c77b

@BitPopCoin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job

Please sign in to comment.