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

Commit

Permalink
Merge pull request #411 from lku/fix/wrong-css-class
Browse files Browse the repository at this point in the history
Fix: Wrong CSS class for labels
  • Loading branch information
Ocramius committed Feb 21, 2015
2 parents 04e16c4 + 604e018 commit 3038e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/ZfModule/view/zf-module/helper/composer-view.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<ul>
<?php foreach ($this->composerConf['require-dev'] as $requireName => $requireVersion): ?>
<li>
<?php echo $this->escapeHtml($requireName) ?>: <span class='label label-important'><?php echo $this->escapeHtml($requireVersion) ?></span>
<?php echo $this->escapeHtml($requireName) ?>: <span class='label label-danger'><?php echo $this->escapeHtml($requireVersion) ?></span>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php endif; ?>

0 comments on commit 3038e1a

Please sign in to comment.