Skip to content

Commit a45d188

Browse files
committed
[Code Style] Concat operator must be followed by one space
Fix missing spaces before and after concat operator at /administrator/components/com_admin/views/help/tmpl/default.php Line: 38 Column: 49
1 parent 9e115ec commit a45d188

File tree

1 file changed

+1
-1
lines changed
  • administrator/components/com_admin/views/help/tmpl

1 file changed

+1
-1
lines changed

administrator/components/com_admin/views/help/tmpl/default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<li class="nav-header"><?php echo JText::_('COM_ADMIN_ALPHABETICAL_INDEX'); ?></li>
3636
<?php foreach ($this->toc as $k => $v):?>
3737
<li>
38-
<?php $url = JHelp::createUrl('JHELP_'.strtoupper($k)); ?>
38+
<?php $url = JHelp::createUrl('JHELP_' . strtoupper($k)); ?>
3939
<?php echo JHtml::_('link', $url, $v, array('target' => 'helpFrame'));?>
4040
</li>
4141
<?php endforeach;?>

0 commit comments

Comments
 (0)