Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit 06245f1

Browse files
committed
Fix usage of short echo tags
1 parent b821221 commit 06245f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

module/User/view/zfc-user/user/index.phtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<?php endforeach; ?>
1212

1313
<ul class="nav nav-tabs">
14-
<li class="active"><a href="#modules" data-toggle="tab"><?=$this->translate('Your Registered Modules'); ?></a></li>
15-
<li><a href="#addrepo" data-toggle="tab"><?=$this->translate('Add a New Module'); ?></a></li>
14+
<li class="active"><a href="#modules" data-toggle="tab"><?php echo $this->translate('Your Registered Modules'); ?></a></li>
15+
<li><a href="#addrepo" data-toggle="tab"><?php echo $this->translate('Add a New Module'); ?></a></li>
1616
</ul>
1717

1818
<div class="tab-content">
@@ -21,7 +21,7 @@
2121
$modules = $this->listModule(['user' => true]);
2222
if (empty($modules)) {
2323
?>
24-
<div class="alert alert-info alert-block"><?=$this->translate('You have not added any modules'); ?></div>
24+
<div class="alert alert-info alert-block"><?php echo $this->translate('You have not added any modules'); ?></div>
2525
<?php
2626
}
2727
foreach ($modules as $module) {

0 commit comments

Comments
 (0)