mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Display popularity with less decimal points
Limit the display to two decimal points for packages with a popularity of at least 0.2. Suggested-by: Allan McRae <allan@archlinux.org> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
c1e5ffb12a
commit
99a3ced73b
2 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ endif;
|
|||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Popularity') . ': ' ?></th>
|
||||
<td><?= number_format($popularity, 6) ?></td>
|
||||
<td><?= number_format($popularity, $popularity >= .2 ? 2 : 6) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('First Submitted') . ': ' ?></th>
|
||||
|
|
|
@ -108,7 +108,7 @@ endif;
|
|||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Popularity') . ': ' ?></th>
|
||||
<td><?= number_format($popularity, 6) ?></td>
|
||||
<td><?= number_format($popularity, $popularity >= .2 ? 2 : 6) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('First Submitted') . ': ' ?></th>
|
||||
|
|
Loading…
Add table
Reference in a new issue