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

Commit

Permalink
Fix: Access renderer properties
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 10, 2015
1 parent bbafb6b commit f90b014
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions module/ZfModule/view/zf-module/index/view.phtml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php $this->headTitle($this->escapeHtmlAttr($module) . ' module by ' . $this->escapeHtmlAttr($vendor)); ?>
<?php $this->headMeta()->appendName('description', $this->escapeHtmlAttr($repository->description)); ?>
<?php $this->headTitle($this->escapeHtmlAttr($this->module) . ' module by ' . $this->escapeHtmlAttr($this->vendor)); ?>
<?php $this->headMeta()->appendName('description', $this->escapeHtmlAttr($this->repository->description)); ?>

<h3><?php echo $vendor ?> / <?php echo $module ?> </h3>
<h3><?php echo $this->vendor; ?> / <?php echo $this->module; ?> </h3>

<div class="row">
<div class="col-md-8">
<p class="well"><?php echo $this->escapeHtml($repository->description); ?></p>
<p class="well"><?php echo $this->escapeHtml($this->repository->description); ?></p>
<ul class="nav nav-tabs">
<li class="active"><a href="#readme" data-toggle="tab">README</a></li>
<li><a href="#license" data-toggle="tab">LICENSE</a></li>
Expand Down Expand Up @@ -38,7 +38,7 @@
</div>
<div class="col-md-4">
<div class="sidebar">
<?php echo $this->moduleDescription($repository); ?>
<?php echo $this->moduleDescription($this->repository); ?>
</div>
</div>
</div>

0 comments on commit f90b014

Please sign in to comment.