From 680528d3878751ab38965f3f0087442d65a2e343 Mon Sep 17 00:00:00 2001
From: jacob <jacob>
Date: Fri, 10 Feb 2012 22:04:58 +0000
Subject: [PATCH] Misplaced not operator preventing people from registering new
 projects

---
 register_participants.inc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/register_participants.inc.php b/register_participants.inc.php
index 1da08a53..5c0923c2 100644
--- a/register_participants.inc.php
+++ b/register_participants.inc.php
@@ -450,7 +450,7 @@ function addRegistration($userId){
 		return "register_participants.inc.php::addRegistration -> user not found";
 	}
 
-	if(!$row['registrations_id']){
+	if(intval($row['registrations_id'])){
 		return "register_participants.inc.php::addRegistration -> user already has a project registered";
 	}