[aur-dev] [PATCH] Show developer-TUs their total community packages.

Loui louipc.ist at gmail.com
Sun Oct 5 20:27:20 EDT 2008


>From 51a6b2243a72249ab89909f01ea85578c336e2a8 Mon Sep 17 00:00:00 2001
From: Loui Chang <louipc.ist at gmail.com>
Date: Sun, 5 Oct 2008 20:24:57 -0400
Subject: [PATCH] Show developer-TUs their total community packages.

This closes:
FS#11561 - Devs in AUR can't see their packages in Community

Thanks to Hugo Doria for the original patch.

Signed-off-by: Loui Chang <louipc.ist at gmail.com>
---
 web/lib/stats.inc                 |    2 +-
 web/template/stats/user_table.php |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/lib/stats.inc b/web/lib/stats.inc
index e659210..6fbc033 100644
--- a/web/lib/stats.inc
+++ b/web/lib/stats.inc
@@ -29,7 +29,7 @@ function user_table($user, $dbh)
 	# If the user is a TU calculate the number of the packages
 	$atype = account_from_sid($_COOKIE["AURSID"]);
 
-	if ($atype == 'Trusted User') {
+	if (($atype == 'Trusted User') || ($atype == 'Developer')) {
 		$result = db_query(sprintf($base_q, 'community'), $dbh);
 		$row = mysql_fetch_row($result);
 		$maintainer_community_count = $row[0];
diff --git a/web/template/stats/user_table.php b/web/template/stats/user_table.php
index b844662..ec71999 100644
--- a/web/template/stats/user_table.php
+++ b/web/template/stats/user_table.php
@@ -13,7 +13,7 @@
 </td>
 </tr>
 
-<?php if ($atype == 'Trusted User'): ?>
+<?php if (($atype == 'Trusted User') || ($atype == 'Developer')) : ?>
 
 <tr>
 <td class='boxSoft'>
-- 
1.6.0.2



More information about the aur-dev mailing list