Skip to content

Commit

Permalink
SAM-3188 Fix missing param name (sakaiproject#4262)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnhutchins authored and ottenhoff committed Apr 17, 2017
1 parent 0cc0a8e commit bf1692c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ public PublishedAssessmentFacade getPublishedAssessmentIdByMetaLabel(final Strin
final HibernateCallback<List<PublishedAssessmentData>> hcb = session -> session
.createQuery("select p from PublishedAssessmentData p, PublishedMetaData m where p=m.assessment and m.label = :label and m.entry = :entry")
.setString("label", label)
.setString(1, entry)
.setString("entry", entry)
.list();
List<PublishedAssessmentData> l = getHibernateTemplate().execute(hcb);

Expand Down

0 comments on commit bf1692c

Please sign in to comment.