--- loncom/interface/lonsyllabus.pm 2017/02/20 18:29:23 1.143 +++ loncom/interface/lonsyllabus.pm 2018/12/27 18:14:25 1.144 @@ -1,7 +1,7 @@ # The LearningOnline Network # Syllabus # -# $Id: lonsyllabus.pm,v 1.143 2017/02/20 18:29:23 raeburn Exp $ +# $Id: lonsyllabus.pm,v 1.144 2018/12/27 18:14:25 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -306,6 +306,7 @@ sub handler { if ($allowed) { #---------------------------------- Print External URL Syllabus Info if editing if ($target ne 'tex') { + my $hostname = &Apache::lonnet::hostname($homeserver); my $protocol = $Apache::lonnet::protocol{$homeserver}; $protocol = 'http' if ($protocol ne 'https'); my $link = $r->uri; @@ -313,7 +314,7 @@ sub handler { $link .= '?usehttp=1'; $protocol = 'http'; } - $link = $protocol.'://'.&Apache::lonnet::hostname($homeserver).$link; + $link = $protocol.'://'.$hostname.$link; $r->print('
' .'' .'' @@ -899,9 +900,10 @@ sub chooser { sub syllabus_file_info { my ($item,$cnum,$cdom,$lonhost,$context) = @_; + my $hostname = &Apache::lonnet::hostname($lonhost); my $protocol = $Apache::lonnet::protocol{$lonhost}; $protocol = 'http' if ($protocol ne 'https'); - my $absurl = $protocol.'://'.&Apache::lonnet::hostname($lonhost).$item; + my $absurl = $protocol.'://'.$hostname.$item; my ($filename) = ($item =~ m{([^/]+)$}); my $file=&Apache::lonnet::filelocation("",$item); my ($depbutton,$filetype,$editable); @@ -1574,9 +1576,10 @@ sub home_http_host { my ($cdom,$cnum) = @_; my $home=&Apache::lonnet::homeserver($cnum,$cdom); if ($home ne 'no_host') { + my $hostname = &Apache::lonnet::hostname($home); my $protocol = $Apache::lonnet::protocol{$home}; $protocol = 'http' if ($protocol ne 'https'); - return $protocol.'://'.&Apache::lonnet::hostname($home); + return $protocol.'://'.$hostname; } return; }