Skip to content

Commit

Permalink
Add missing echo to translation in layout
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDotPro committed Jul 6, 2012
1 parent e9fdbd2 commit 8c90947
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/Application/view/layout/layout.phtml
Expand Up @@ -30,10 +30,10 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="<?php echo $this->url('home') ?>"><?php $this->translate('Skeleton Application') ?></a>
<a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="<?php echo $this->url('home') ?>"><?php $this->translate('Home') ?></a></li>
<li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
Expand Down

0 comments on commit 8c90947

Please sign in to comment.