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

Commit

Permalink
added an HTML id for each package on the main HTML page (closes #61)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Dec 27, 2012
1 parent df36b76 commit e6d1180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pirum
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ pear install <?php echo $this->server->alias ?>/package_name-beta</code></pre>
$grps = $package['deps']['group']; $grps = $package['deps']['group'];
} }
?> ?>
<h3><?php echo $package['name'] ?><small> - <?php echo $package['summary'] ?></small></h3> <h3 id="<?php echo strtolower($package['name']) ?>"><?php echo $package['name'] ?><small> - <?php echo $package['summary'] ?></small></h3>
<p><?php echo $package['description'] ?></p> <p><?php echo $package['description'] ?></p>
<table> <table>
<tr><th>Install command</th><td><strong><?php echo $package['extension'] != null ? 'pecl' : 'pear' ?> install <?php echo $this->server->alias ?>/<?php echo $package['name'] ?></strong></td></tr> <tr><th>Install command</th><td><strong><?php echo $package['extension'] != null ? 'pecl' : 'pear' ?> install <?php echo $this->server->alias ?>/<?php echo $package['name'] ?></strong></td></tr>
Expand Down

0 comments on commit e6d1180

Please sign in to comment.