Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalop committed Sep 23, 2011
1 parent 43e9b2e commit bea86d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/moma/moma/DB/ApiData.cs
Expand Up @@ -84,7 +84,7 @@ public MomaDataSet GetApiData (string apiname)
"INNER JOIN reports_counts rc ON rc.report_id = r.report_id " +
"INNER JOIN reports_members rm ON r.report_id = rm.report_id AND rm.member_id = @member_id " +
"ORDER BY submitdate DESC";
AddParameter (cmd, "memberid", row.MemberId);
AddParameter (cmd, "member_id", row.MemberId);
adapter = GetDataAdapter(cmd);
adapter.Fill (ds, "Applications");
}
Expand Down

0 comments on commit bea86d4

Please sign in to comment.