Add missing echo to translation in layout
authorEvan Coury <me@evancoury.com>
Fri, 6 Jul 2012 06:34:58 +0000 (23:34 -0700)
committerEvan Coury <me@evancoury.com>
Fri, 6 Jul 2012 06:34:58 +0000 (23:34 -0700)
module/Application/view/layout/layout.phtml

index b836fde..ee643f2 100644 (file)
             <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>