Skip to content

Commit

Permalink
Merge pull request #876 from ohmage/ohmage-2.17.1
Browse files Browse the repository at this point in the history
bugfix user reg
  • Loading branch information
stevenolen committed Dec 11, 2015
2 parents b8c6209 + 4619f54 commit bef7cb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<property file="build.properties"/>
<property name="library" location="lib"/>
<property name="app_name" value="ohmage"/>
<property name="app_version" value="2.17.1"/>
<property name="app_version" value="2.17.2"/>
<property name="src" location="src"/>
<property name="test" location="test"/>
<property name="view" location="view"/>
Expand Down
7 changes: 4 additions & 3 deletions src/org/ohmage/query/impl/UserQueries.java
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public void createUserRegistration(
new Object[] {
username,
hashedPassword,
//null,
null,
emailAddress,
false,
false,
Expand All @@ -657,12 +657,13 @@ public void createUserRegistration(
SQL_INSERT_USER +
"' with parameters: " +
username + ", " +
emailAddress + ", " +
hashedPassword + ", " +
"null" +
emailAddress + ", " +
false + ", " +
false + ", " +
false + ", " +
"null",
defaultCampaignCreationPrivilege,
e);
}

Expand Down

0 comments on commit bef7cb5

Please sign in to comment.