summaryrefslogtreecommitdiffstats
path: root/web/template/stats/general_stats_table.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/template/stats/general_stats_table.php')
-rw-r--r--web/template/stats/general_stats_table.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/web/template/stats/general_stats_table.php b/web/template/stats/general_stats_table.php
index e2b12c7a..6a92c3b8 100644
--- a/web/template/stats/general_stats_table.php
+++ b/web/template/stats/general_stats_table.php
@@ -1,36 +1,36 @@
-<h3><?php echo __("Statistics") ?></h3>
+<h3><?= __("Statistics") ?></h3>
<table>
<tr>
- <td><?php print __("Packages"); ?></td>
- <td><?php print $unsupported_count; ?></td>
+ <td><?= __("Packages"); ?></td>
+ <td><?= $unsupported_count; ?></td>
</tr>
<tr>
- <td><?php print __("Orphan Packages"); ?></td>
- <td><?php print $orphan_count; ?></td>
+ <td><?= __("Orphan Packages"); ?></td>
+ <td><?= $orphan_count; ?></td>
</tr>
<tr>
- <td><?php print __("Packages added in the past 7 days"); ?></td>
- <td><?php print $add_count; ?></td>
+ <td><?= __("Packages added in the past 7 days"); ?></td>
+ <td><?= $add_count; ?></td>
</tr>
<tr>
- <td><?php print __("Packages updated in the past 7 days"); ?></td>
- <td><?php print $update_count; ?></td>
+ <td><?= __("Packages updated in the past 7 days"); ?></td>
+ <td><?= $update_count; ?></td>
</tr>
<tr>
- <td><?php print __("Packages updated in the past year"); ?></td>
- <td><?php print $update_year_count; ?></td>
+ <td><?= __("Packages updated in the past year"); ?></td>
+ <td><?= $update_year_count; ?></td>
</tr>
<tr>
- <td><?php print __("Packages never updated"); ?></td>
- <td><?php print $never_update_count; ?></td>
+ <td><?= __("Packages never updated"); ?></td>
+ <td><?= $never_update_count; ?></td>
</tr>
<tr>
- <td><?php print __("Registered Users"); ?></td>
- <td><?php print $user_count; ?></td>
+ <td><?= __("Registered Users"); ?></td>
+ <td><?= $user_count; ?></td>
</tr>
<tr>
- <td><?php print __("Trusted Users"); ?></td>
- <td><?php print $tu_count; ?></td>
+ <td><?= __("Trusted Users"); ?></td>
+ <td><?= $tu_count; ?></td>
</tr>
</table>