summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--all.php1
-rw-r--r--rpm.php7
2 files changed, 5 insertions, 3 deletions
diff --git a/all.php b/all.php
index 448751f..0e855d8 100644
--- a/all.php
+++ b/all.php
@@ -128,6 +128,7 @@ function report ($db)
: "");
if (strpos($repo['sub'], '-os')
+ || strpos($repo['sub'], '-beta')
|| strpos($repo['sub'], '-base')
|| strpos($repo['sub'], '-optional')
|| strpos($repo['sub'], '-stable')
diff --git a/rpm.php b/rpm.php
index defd172..7ddcb77 100644
--- a/rpm.php
+++ b/rpm.php
@@ -155,6 +155,7 @@ function report($db, $type)
}
if (strpos($repo['sub'], '-os')
+ || strpos($repo['sub'], '-beta')
|| strpos($repo['sub'], '-base')
|| strpos($repo['sub'], '-optional')
|| strpos($repo['sub'], '-stable')
@@ -199,8 +200,8 @@ function report($db, $type)
break;
case "updates":
$display .= sprintf(
- "<strong>%s</strong>-%s ".
- "<small>(%s)</small><br/>",
+ "<strong>%s</strong>-%s".
+ "<br/><small>(%s)</small><br/>",
$rpm['ver'],
$rpm['rel'],
$repo['sub']
@@ -211,7 +212,7 @@ function report($db, $type)
break;
case "testing":
$display .= sprintf(
- "%s-%s <small>(%s)</small><br/>",
+ "%s-%s<br/><small>(%s)</small>",
$rpm['ver'],
$rpm['rel'],
$repo['sub']