From 371327cb870ab8406c15e4d6bf9f951c7141092b Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Tue, 23 Aug 2005 00:26:08 +0000 Subject: [PATCH] Fix User::getAppDataQuery() copy/paste bug that was causing super maintainers to not be able to process app data for applications they super maintain --- include/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/user.php b/include/user.php index a32afad..a2f2cba 100644 --- a/include/user.php +++ b/include/user.php @@ -430,7 +430,7 @@ class User { $sQuery = "select ".$selectTerms." from appMaintainers, appVersion, appData where ( ((appMaintainers.appId = appVersion.appId) AND - (appMaintainers.superMaintainer = '0')) + (appMaintainers.superMaintainer = '1')) OR ((appMaintainers.versionId = appVersion.versionId) AND (appMaintainers.superMaintainer = '0'))