From 45a50d4a66f5e57d260109e1f332ee7d06183d46 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 11 Aug 2011 09:04:01 -0500 Subject: Remove unnecessary atype and uid lookup from package_details() These were never used in the function. Where they are used is in the pkg_details.php template, so move them closer to their actual usage so as not to confuse poor programmers such as myself. Signed-off-by: Dan McGee Signed-off-by: Lukas Fleischer --- web/lib/pkgfuncs.inc.php | 3 --- web/template/pkg_details.php | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'web') diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php index 7dc0ae64..3e89fa35 100644 --- a/web/lib/pkgfuncs.inc.php +++ b/web/lib/pkgfuncs.inc.php @@ -301,9 +301,6 @@ function pkgname_is_blacklisted($name, $dbh=NULL) { # display package details # function package_details($id=0, $SID="", $dbh=NULL) { - $atype = account_from_sid($SID); - $uid = uid_from_sid($SID); - if(!$dbh) { $dbh = db_connect(); } diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index 52391232..c03493d8 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -1,4 +1,6 @@