userid' AND appId = '$appId' AND superMaintainer = '$superMaintainer';"; else $query = "DELETE FROM appMaintainers WHERE userId = '$current->userid' AND appId = '$appId' AND versionId = '$versionId' AND superMaintainer = '$superMaintainer';"; echo "$query"; $result = mysql_query($query); if($result) { if($superMaintainer) echo "You were removed as a supermaintainer of ".appIdToName($appId); else echo "You were removed as a maintainer of ".appIdToName($appId).versionIdToName($versionId); } else { //error echo "

Database Error!
".mysql_error()."

\n"; } } else { echo '
',"\n"; echo html_frame_start("Confirm",400,"",0); echo "\n"; echo ""; echo ""; echo ""; echo ""; if($superMaintainer) { echo "\n"; echo '\n"; echo '
Are you sure that you want to be removed as a super maintainer of this application?
', "\n"; } else { echo "
Are you sure that you want to be removed as a maintainer of this application?
', "\n"; } echo "
"; } echo html_frame_end(); apidb_footer(); ?>