Skip to content

Commit

Permalink
Update context history parameter
Browse files Browse the repository at this point in the history
Allow context history parameter to be populated when the Course ID is used as the unique identifier for courses.
  • Loading branch information
spvickers committed Jul 16, 2018
1 parent 5374686 commit 26f6cc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/java/org/oscelot/blackboard/lti/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@ public static String getOldContextId(B2Context b2Context, String contextIdType)

String contextIds = "";
String old = courseContext.getSetting(false, true, "x_courseid", "");
if ((old.length() > 0) && !contextIdType.equals(Constants.DATA_COURSEID)) {
if (old.length() > 0) {
StringBuilder contexts = new StringBuilder();
try {
BbPersistenceManager bbPm = PersistenceServiceFactory.getInstance().getDbPersistenceManager();
Expand Down
2 changes: 1 addition & 1 deletion web/WEB-INF/bb-manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<description value="plugin.description" />
<handle value="BasicLTI" />
<default-locale value="en_US" />
<version value="3.3.4" />
<version value="3.3.5" />
<webapp-type value="javaext" />
<requires>
<bbversion value="9.1.100401.0" />
Expand Down

0 comments on commit 26f6cc8

Please sign in to comment.