[PATCH] Display popularity with less decimal points

Lukas Fleischer lfleischer at archlinux.org
Sun Oct 27 01:09:55 UTC 2019


Limit the display to two decimal points for packages with a popularity
of at least 0.2.

Suggested-by: Allan McRae <allan at archlinux.org>
Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 web/template/pkg_details.php     | 2 +-
 web/template/pkgbase_details.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php
index 650c245..93b5f1e 100644
--- a/web/template/pkg_details.php
+++ b/web/template/pkg_details.php
@@ -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>
diff --git a/web/template/pkgbase_details.php b/web/template/pkgbase_details.php
index 8a6e2b4..b2ce8cb 100644
--- a/web/template/pkgbase_details.php
+++ b/web/template/pkgbase_details.php
@@ -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>
-- 
2.23.0


More information about the aur-dev mailing list