[LON-CAPA-cvs] cvs: loncom /interface lonexttool.pm
raeburn
raeburn at source.lon-capa.org
Fri Aug 6 21:32:12 EDT 2021
raeburn Sat Aug 7 01:32:12 2021 EDT
Modified files:
/loncom/interface lonexttool.pm
Log:
- Make args order in call to ltiutils::sign_params() consistent with change
in ltiutils rev. 1.17
Index: loncom/interface/lonexttool.pm
diff -u loncom/interface/lonexttool.pm:1.21 loncom/interface/lonexttool.pm:1.22
--- loncom/interface/lonexttool.pm:1.21 Tue May 4 18:47:36 2021
+++ loncom/interface/lonexttool.pm Sat Aug 7 01:32:12 2021
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Launch External Tool Provider (LTI)
#
-# $Id: lonexttool.pm,v 1.21 2021/05/04 18:47:36 raeburn Exp $
+# $Id: lonexttool.pm,v 1.22 2021/08/07 01:32:12 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -435,7 +435,7 @@
sub launch_html {
my ($url,$key,$secret,$sigmethod,$submittext,$paramsref) = @_;
- my $hashref = &LONCAPA::ltiutils::sign_params($url,$key,$secret,$sigmethod,$paramsref);
+ my $hashref = &LONCAPA::ltiutils::sign_params($url,$key,$secret,$paramsref,$sigmethod);
my $action = &HTML::Entities::encode($url,'<>&"');
my $form = <<"END";
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
More information about the LON-CAPA-cvs
mailing list