changelog shortlog tags files raw

changeset: [project @ 139]

changeset 138: e6c403cb7823
parent 137:c0332fde6e64
child 139:fbb69c688b63
author: Dmitry Nezhevenko <dion@inhex.net>
date: Sun Nov 25 21:50:56 2007 +0000 (2 years ago)
files: src/base/rolelist.cpp
description: [project @ 139]
Security: Fix Incorrect role calculation for visitors
       1--- a/src/base/rolelist.cpp	Thu Aug 30 19:42:49 2007 +0000
       2+++ b/src/base/rolelist.cpp	Sun Nov 25 21:50:56 2007 +0000
       3@@ -60,6 +60,7 @@
       4 		return(ROLE_MEMBER);
       5 	if (r.startsWith("PARTICIPANT"))
       6 		return(ROLE_PARTICIPANT);
       7+	return 0;
       8 }
       9 
      10 int RoleList::operator[](const QString&key)