From 2306c4be83ec2f1ef9b5fffe0566a002534c7f98 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 11 Dec 2004 21:32:03 +0000 Subject: [PATCH] Remove some debug lines...again... --- include/user.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/user.php b/include/user.php index ac0da41..7b3ed91 100644 --- a/include/user.php +++ b/include/user.php @@ -245,15 +245,9 @@ class User { function is_super_maintainer($appId) { if(!loggedin() || !$this->userid) -{ - echo "not logged in or not this userid"; return false; -}else { - echo "running the query"; -} $query = "SELECT * FROM appMaintainers WHERE userid = '$this->userid' AND appId = '$appId' AND superMaintainer = '1'"; - echo "$query"; $result = mysql_query($query, $this->link); if(!$result) return 0;