From d8ea2d4a02a935a0e1c21605facfef5aa6b35acd Mon Sep 17 00:00:00 2001 From: Balló György Date: Fri, 10 Jan 2014 20:09:28 +0100 Subject: Forbid developers to vote According to Trusted User Bylaws, TUs (and only TUs) must take part in votes. Developers who want to take part in votes should set their account type to 'Trusted User'. Signed-off-by: Lukas Fleischer --- web/html/tu.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'web/html/tu.php') diff --git a/web/html/tu.php b/web/html/tu.php index a6aa292..5d4e37d 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -39,6 +39,9 @@ if ($atype == "Trusted User" || $atype == "Developer") { if ($isrunning == 0) { $canvote = 0; $errorvote = __("Voting is closed for this proposal."); + } else if ($atype == "Developer") { + $canvote = 0; + $errorvote = __("Only Trusted Users are allowed to vote."); } else if ($row['User'] == username_from_sid($_COOKIE["AURSID"])) { $canvote = 0; $errorvote = __("You cannot vote in an proposal about you."); -- cgit v1.2.3-54-g00ecf