Skip to content

Commit

Permalink
Fix to session registration logic
Browse files Browse the repository at this point in the history
  • Loading branch information
donker committed May 9, 2016
1 parent 4010b8e commit 031b684
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Connect.Conference.Core/Properties/AssemblyInfo.cs
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("2.0.21")]
[assembly: AssemblyVersion("2.0.21")]
[assembly: AssemblyFileVersion("2.0.21")]
// [assembly: AssemblyVersion("2.0.22")]
[assembly: AssemblyVersion("2.0.22")]
[assembly: AssemblyFileVersion("2.0.22")]
Expand Up @@ -43,8 +43,8 @@ public void SetSessionAttendee(int sessionId, int userId)
context.Execute(System.Data.CommandType.Text,
"IF NOT EXISTS (SELECT * FROM {databaseOwner}{objectQualifier}Connect_Conference_SessionAttendees " +
"WHERE SessionId=@0 AND UserId=@1) " +
"INSERT INTO {databaseOwner}{objectQualifier}Connect_Conference_SessionAttendees (SessionId, UserId) " +
"SELECT @0, @1", sessionId, userId);
"INSERT INTO {databaseOwner}{objectQualifier}Connect_Conference_SessionAttendees (SessionId, UserId, CreatedByUserID, CreatedOnDate, LastModifiedByUserID, LastModifiedOnDate) " +
"SELECT @0, @1, @1, GETDATE(), @1, GETDATE()", sessionId, userId);
}
}
public void SetSessionAttendees(int sessionId, List<int> sessionAttendees)
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Expand Up @@ -32,6 +32,6 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.0.21")]
[assembly: AssemblyFileVersion("2.0.21")]
[assembly: AssemblyVersion("2.0.22")]
[assembly: AssemblyFileVersion("2.0.22")]
[assembly: AssemblyInformationalVersion("01.00.00")]
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "conference",
"version": "2.0.22",
"version": "2.0.23",
"description": "Conference module",
"dnnModule": {
"fullName": "Connect.Conference",
Expand Down

0 comments on commit 031b684

Please sign in to comment.